Skip to content

Commit

Permalink
ignore ::NodeIteratorSize (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
uwej711 committed May 24, 2011
1 parent 67ed222 commit 3127fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackalope/Node.php
Expand Up @@ -61,7 +61,7 @@ public function __construct($factory, $rawData, $path, \PHPCR\SessionInterface $
* no data. Then the $value is not the type string for binary,
* but the number of bytes of the property
*/
if (0 === strpos($key, ':')) {
if (0 === strpos($key, ':') && $key != '::NodeIteratorSize') {
if (is_int($value)) {
// This is a binary property and we just got its length with no data
$key = substr($key, 1);
Expand Down

0 comments on commit 3127fff

Please sign in to comment.