- Timestamp:
- 2006/10/12 19:08:44 (20 years ago)
- Location:
- temp/trunk
- Files:
-
- 24 added
- 7 edited
-
data/lib/slib.php (modified) (2 diffs)
-
html/install/user_data/templates/default1/bloc (added)
-
html/install/user_data/templates/default1/bloc/best5.tpl (added)
-
html/install/user_data/templates/default1/bloc/cart.tpl (added)
-
html/install/user_data/templates/default1/bloc/category.tpl (added)
-
html/install/user_data/templates/default1/bloc/guide.tpl (added)
-
html/install/user_data/templates/default1/bloc/leftnavi.tpl (added)
-
html/install/user_data/templates/default1/bloc/login.tpl (added)
-
html/install/user_data/templates/default1/bloc/news.tpl (added)
-
html/install/user_data/templates/default1/bloc/search_products.tpl (added)
-
html/install/user_data/templates/default1/contents.css (modified) (1 diff)
-
html/install/user_data/templates/default1/detail.tpl (modified) (previous)
-
html/install/user_data/templates/default1/footer.tpl (modified) (previous)
-
html/install/user_data/templates/default1/header.tpl (modified) (previous)
-
html/install/user_data/templates/default1/list.tpl (modified) (previous)
-
html/install/user_data/templates/default1/top.tpl (modified) (previous)
-
html/install/user_data/templates/mypage (added)
-
html/install/user_data/templates/mypage/change.tpl (added)
-
html/install/user_data/templates/mypage/change_complete.tpl (added)
-
html/install/user_data/templates/mypage/change_confirm.tpl (added)
-
html/install/user_data/templates/mypage/delivery.tpl (added)
-
html/install/user_data/templates/mypage/delivery_addr.tpl (added)
-
html/install/user_data/templates/mypage/error.tpl (added)
-
html/install/user_data/templates/mypage/history.tpl (added)
-
html/install/user_data/templates/mypage/index.tpl (added)
-
html/install/user_data/templates/mypage/login.tpl (added)
-
html/install/user_data/templates/mypage/navi.tpl (added)
-
html/install/user_data/templates/mypage/reading.tpl (added)
-
html/install/user_data/templates/mypage/refusal.tpl (added)
-
html/install/user_data/templates/mypage/refusal_complete.tpl (added)
-
html/install/user_data/templates/mypage/refusal_confirm.tpl (added)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/lib/slib.php
r6149 r6150 20 20 21 21 /* ¥Æ¡¼¥Ö¥ë¤Î¸ºß¥Á¥§¥Ã¥¯ */ 22 function sfTabaleExists($table_name ) {22 function sfTabaleExists($table_name, $db_type=DB_TYPE) { 23 23 $objQuery = new SC_Query(); 24 24 // postgresql¤Èmysql¤È¤Ç½èÍý¤òʬ¤±¤ë 25 if ( DB_TYPE== "pgsql") {25 if ($db_type == "pgsql") { 26 26 $sql = "SELECT 27 27 relname … … 39 39 $flg = false; 40 40 } 41 }else if ( DB_TYPE== "mysql") {41 }else if ($db_type == "mysql") { 42 42 $sql = "SHOW TABLE STATUS LIKE ?"; 43 43 $arrRet = $objQuery->getAll($sql, array($table_name)); -
temp/trunk/html/install/user_data/templates/default1/contents.css
r5934 r6150 1 1 /* 2 * Copyright (c)2000-2006 LOCKON CO.,LTD. All Rights Reserved.2 * Copyright ¢í 2000-2006 LOCKON CO.,LTD. All Rights Reserved. 3 3 * 4 4 * http://www.lockon.co.jp/
Note: See TracChangeset
for help on using the changeset viewer.
