Changeset 2664
- Timestamp:
- 12/14/06 21:56:49 (2 years ago)
- Location:
- branches/1.1-beta
- Files:
-
- 3 modified
-
blog/checkup/index.php (modified) (2 diffs)
-
lib/config.php (modified) (1 diff)
-
setup.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1-beta/blog/checkup/index.php
r2621 r2664 383 383 } 384 384 385 // Since 1.1. 0.3385 // Since 1.1.1 386 386 $indexes = DBQuery::queryAll("Show index from {$database['prefix']}Entries"); 387 387 $idkey = FALSE; … … 397 397 } 398 398 399 if (DBQuery::queryCell("DESC {$database['prefix']}Comments isFiltered", 'Key') != 'MUL') { 400 $changed = true; 401 echo '<li>', _text('댓글 테이블에 필터 인덱스를 추가합니다.'), ': '; 402 if (DBQuery::execute("ALTER TABLE {$database['prefix']}Comments ADD INDEX isFiltered (isFiltered)")) 403 echo '<span style="color:#33CC33;">', _text('성공'), '</span></li>'; 404 else 405 echo '<span style="color:#FF0066;">', _text('실패'), '</span></li>'; 406 } 407 408 if (DBQuery::queryCell("DESC {$database['prefix']}Trackbacks isFiltered", 'Key') != 'MUL') { 409 $changed = true; 410 echo '<li>', _text('글걸기 테이블에 필터 인덱스를 추가합니다.'), ': '; 411 if (DBQuery::execute("ALTER TABLE {$database['prefix']}Trackbacks ADD INDEX isFiltered (isFiltered)")) 412 echo '<span style="color:#33CC33;">', _text('성공'), '</span></li>'; 413 else 414 echo '<span style="color:#FF0066;">', _text('실패'), '</span></li>'; 415 } 399 416 400 417 $filename = ROOT . '/.htaccess'; -
branches/1.1-beta/lib/config.php
r2629 r2664 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 define('TATTERTOOLS_NAME', 'Tattertools'); 6 define('TATTERTOOLS_VERSION', '1.1. 0.3a1 : Friends');6 define('TATTERTOOLS_VERSION', '1.1.1a1 : Friends'); 7 7 define('TATTERTOOLS_COPYRIGHT', 'Copyright © 2004-2006. Tatter & Company / Tatter & Friends. All rights reserved. Licensed under the GPL.'); 8 8 define('TATTERTOOLS_HOMEPAGE', 'http://www.tattertools.com/'); -
branches/1.1-beta/setup.php
r2606 r2664 1054 1054 KEY owner (owner), 1055 1055 KEY entry (entry), 1056 KEY parent (parent) 1056 KEY parent (parent), 1057 KEY isFiltered (isFiltered) 1057 1058 ) $charset; 1058 1059 CREATE TABLE {$_POST['dbPrefix']}CommentsNotified ( … … 1312 1313 isFiltered int(11) NOT NULL default '0', 1313 1314 PRIMARY KEY (id), 1314 UNIQUE KEY owner (owner, entry, url) 1315 UNIQUE KEY owner (owner, entry, url), 1316 KEY isFiltered (isFiltered) 1315 1317 ) $charset; 1316 1318 CREATE TABLE {$_POST['dbPrefix']}Users (
