Skip to content

Commit

Permalink
Fix missing "$sz" variable in example/userstream-simple.php. I assume…
Browse files Browse the repository at this point in the history
… this was suppose to be the size of the object returned in the stream.
  • Loading branch information
aaronpk committed Dec 11, 2011
1 parent 36cdae3 commit e9d7f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/userstream-simple.php
Expand Up @@ -35,7 +35,7 @@ public function enqueueStatus($status)
* should be being enqueued and processed asyncronously from the collection process.
*/
$data = json_decode($status, true);
echo date("Y-m-d H:i:s (").$sz."):".print_r($data,true)."\n";
echo date("Y-m-d H:i:s (").strlen($status)."):".print_r($data,true)."\n";
}

}
Expand Down

0 comments on commit e9d7f21

Please sign in to comment.