]> git.llucax.com Git - z.facultad/75.43/tp1.git/commitdiff
IdentaciĆ³n.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 5 May 2005 02:14:32 +0000 (02:14 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 5 May 2005 02:14:32 +0000 (02:14 +0000)
src/lib/file.admins.php
src/lib/file.php

index 9e1ac911ec227996928343a18cacb72a5b8ffbe5..74498c96275a3c8de67b0efc4ff122a7d0fa2cf6 100644 (file)
@@ -15,7 +15,7 @@
  */
 function file_admins_check()
 {
-               return count(@file('data/admins.txt')) > 1;
+    return count(@file('data/admins.txt')) > 1;
 }
 
 /**
index 2e3b403cbcff2aaab6e9f006397bddf15433a0d2..ab50b24b4160581e1e504262b179d1687471d4e0 100644 (file)
@@ -65,7 +65,7 @@ function fgetallcsv($filename, $delim = ',')
  */
 function fsearchcsv($filename, $what, $id = 0, $delim = ',')
 {
-               if (($f = fopen($filename, 'r')) === false) return false;
+    if (($f = fopen($filename, 'r')) === false) return false;
     while (!feof($f))
     {
         $d = fgetcsv($f, 4096);