]> git.llucax.com Git - z.facultad/75.43/tp1.git/commitdiff
Bugfix.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 4 May 2005 20:57:44 +0000 (20:57 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 4 May 2005 20:57:44 +0000 (20:57 +0000)
src/lib/file.log.php

index 97770180e03ea121bbe76745d381ddc8a7b3b479..bcdcb41dec8be0807d29e6fd634e33e9c1b61855 100644 (file)
@@ -17,7 +17,7 @@ require_once 'lib/file.php';
  */
 function file_log_open($user)
 {
-    return fopen($filename, 'r');
+    return fopen("data/log.$user.csv", 'r');
 }
 
 /**
@@ -37,7 +37,7 @@ function file_log_next($fp)
  */
 function file_log_seek($fp, $pos)
 {
-    while (!feof($f) and $pos--) fgetcsv($fp, 4096);
+    while (!feof($fp) and $pos--) fgetcsv($fp, 4096);
     return !$pos;
 }