Changeset 231
- Timestamp:
- 08/22/07 08:38:52 (15 years ago)
- Location:
- dev
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/admin/option_db.php
r216 r231 44 44 } 45 45 } 46 47 return round($size/1024, 2).' KB <input type="checkbox" name="option[sql_clearcache]">Clear cache ?'; 46 47 // GB 48 if (($size / 1073741824) > 1){ 49 return round($size/1073741824, 4).' GB <input type="checkbox" name="option[sql_clearcache]">Clear cache ?'; 50 // MB 51 }elseif (($size / 1048576) > 1){ 52 return round($size/1048576, 4).' MB <input type="checkbox" name="option[sql_clearcache]">Clear cache ?'; 53 // KB 54 }else{ 55 return round($size/1024, 2).' KB <input type="checkbox" name="option[sql_clearcache]">Clear cache ?'; 56 } 48 57 } 49 58 -
dev/common/includes/globals.php
r219 r231 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 2 19$', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 231 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 -
dev/mods/feed_syndication/feed_fetcher.php
r226 r231 14 14 require_once( "common/includes/class.kill.php" ); 15 15 require_once( "common/includes/class.parser.php" ); 16 if ( file_exists(" ../../common/includes/class.comments.php") ) // for the Eve-Dev Comment Class16 if ( file_exists("common/includes/class.comments.php") ) // for the Eve-Dev Comment Class 17 17 require_once( "common/includes/class.comments.php" ); 18 18 if ( file_exists("../../common/class.comment.php") ) // for the D2 Killboard Comment Class -
dev/mods/feed_syndication/settings.php
r226 r231 144 144 $html .= $feedfetch->grab($feed[$i], $myid . $str); 145 145 } 146 config::set($cfg, $feed[$i] . ':::' . $lastkllid . ':::' . $friend );146 config::set($cfg, $feed[$i] . ':::' . $lastkllid . ':::' . $friend[$i]); 147 147 $time[$i] = $lastkllid; 148 148 }