Make WordPress Core


Ignore:
Timestamp:
06/14/2007 02:25:30 AM (19 years ago)
Author:
ryan
Message:

Trim empty lines. Nothing but newline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/streams.php

    r4003 r5700  
    2929    return false;
    3030  }
    31  
     31
    3232  // should return new position
    3333  function seekto($position) {
    3434    return false;
    3535  }
    36  
     36
    3737  // returns current position
    3838  function currentpos() {
    3939    return false;
    4040  }
    41  
     41
    4242  // returns length of entire stream (limit for seekto()s)
    4343  function length() {
     
    115115      }
    116116      $this->_pos = ftell($this->_fd);
    117      
     117
    118118      return $data;
    119119    } else return '';
Note: See TracChangeset for help on using the changeset viewer.