Changeset 2606
- Timestamp:
- 11/28/06 02:06:22 (2 years ago)
- Location:
- branches/1.1-beta
- Files:
-
- 3 modified
-
blog/checkup/index.php (modified) (1 diff)
-
lib/config.php (modified) (1 diff)
-
setup.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1-beta/blog/checkup/index.php
r2504 r2606 383 383 } 384 384 385 if (DBQuery::queryCell("DESC {$database['prefix']}Entries id", 'Key') != 'MUL') { // Since 1.0.3 386 $changed = true; 387 echo '<li>', _text('본문 테이블에 태그 검색 향상을 위한 인덱스를 추가합니다.'), ': '; 388 if (DBQuery::execute("ALTER TABLE {$database['prefix']}Entries ADD INDEX id (id)")) 389 echo '<span style="color:#33CC33;">', _text('성공'), '</span></li>'; 390 else 391 echo '<span style="color:#FF0066;">', _text('실패'), '</span></li>'; 392 } 393 385 394 $filename = ROOT . '/.htaccess'; 386 395 $fp = fopen($filename, "r"); -
branches/1.1-beta/lib/config.php
r2586 r2606 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. 2: Friends');6 define('TATTERTOOLS_VERSION', '1.1.0.3a1 : 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
r2566 r2606 1126 1126 PRIMARY KEY (owner, id, draft), 1127 1127 KEY owner (owner), 1128 KEY category (category) 1128 KEY category (category), 1129 KEY id (id) 1129 1130 ) $charset; 1130 1131 CREATE TABLE {$_POST['dbPrefix']}FeedGroupRelations (
