diff options
-rw-r--r-- | search.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,5 +126,5 @@ function read_stdin() $input = fgets($fr,128); // read a maximum of 128 characters $input = rtrim($input); // trim any trailing spaces. fclose ($fr); // close the file handle - return $input; // return the text entered + return $input . "\n"; // return the text entered } |