Changeset 114 for trunk/admin/xcache.php
- Timestamp:
- 08/30/2006 12:31:03 AM (2 years ago)
- Files:
-
- 1 modified
-
trunk/admin/xcache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/xcache.php
r107 r114 165 165 $haveinode = false; 166 166 foreach ($cachelist['cache_list'] as $e) { 167 if ( !isset($e['inode'])) {168 break;167 if (isset($e['inode'])) { 168 $haveinode = true; 169 169 } 170 $haveinode = true; 171 $i = &$inodes[$e['inode']]; 172 if (isset($i) && $i == 1) { 173 trigger_error("duplicate inode $e[inode]"); 170 } 171 if (!$haveinode) { 172 foreach ($cachelist['deleted_list'] as $e) { 173 if (isset($e['inode'])) { 174 $haveinode = true; 175 } 174 176 } 175 $i ++;176 177 } 177 178 }

