Changeset - b65dd106baf2
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 15 years ago 2010-10-21 18:22:13
ohnobinki@ohnopublishing.net
Guard against another PHP notice.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
inc/school.inc
Show inline comments
 
@@ -286,7 +286,7 @@ function _school_cache_load()
 
  $cache_file_name = dirname(__FILE__) . DIRECTORY_SEPARATOR . '..'
 
    . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'schools';
 
  $cache_serialized = @file_get_contents($cache_file_name);
 
  if (isset($cache_serialized))
 
  if (!empty($cache_serialized))
 
    $cache = unserialize($cache_serialized);
 

	
 
  return $cache;
0 comments (0 inline, 0 general)