Skip to content

Commit

Permalink
Merge pull request zendframework#5444 from samsonasik/fix/indent
Browse files Browse the repository at this point in the history
fix indentation
  • Loading branch information
weierophinney committed Nov 11, 2013
2 parents 1987a20 + ece2160 commit abca4ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/View/Stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function stream_seek($offset, $whence)
switch ($whence) {
case SEEK_SET:
if ($offset < strlen($this->data) && $offset >= 0) {
$this->pos = $offset;
$this->pos = $offset;
return true;
} else {
return false;
Expand Down

0 comments on commit abca4ad

Please sign in to comment.