Changeset 5700 for trunk/wp-includes/streams.php
- Timestamp:
- 06/14/2007 02:25:30 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/streams.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/streams.php
r4003 r5700 29 29 return false; 30 30 } 31 31 32 32 // should return new position 33 33 function seekto($position) { 34 34 return false; 35 35 } 36 36 37 37 // returns current position 38 38 function currentpos() { 39 39 return false; 40 40 } 41 41 42 42 // returns length of entire stream (limit for seekto()s) 43 43 function length() { … … 115 115 } 116 116 $this->_pos = ftell($this->_fd); 117 117 118 118 return $data; 119 119 } else return '';
Note: See TracChangeset
for help on using the changeset viewer.