Changeset - aad2525d04c8
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 15 years ago 2011-03-03 19:14:41
ohnobinki@ohnopublishing.net
Fix another PHP notice/warning.
1 file changed with 6 insertions and 3 deletions:
0 comments (0 inline, 0 general)
admin.php
Show inline comments
 
@@ -109,11 +109,14 @@ require_once('inc/admin.inc');
 
  }
 

	
 
  function getLastRehash(){
 
    $stats = stat("cache/schools");
 
    $schoollist_filename = 'cache/schools';
 
    if (!file_exists($schoollist_filename))
 
      return FALSE;
 
    $stats = stat($schoollist_filename);
 
    if(!$stats){
 
      return false;
 
      return FALSE;
 
    }
 
    return date("F j, Y, g:i a", $stats[9]);
 
    return date('F j, Y, g:i a', $stats[9]);
 
  }
 

	
 
  function schoolsDropList()
0 comments (0 inline, 0 general)