Changeset 6211 for temp/trunk
- Timestamp:
- 2006/10/13 09:54:46 (20 years ago)
- Location:
- temp/trunk
- Files:
-
- 1 deleted
- 2 edited
-
data/lib/slib.php (modified) (1 diff)
-
html/install/index.php (modified) (2 diffs)
-
html/install/user_data/templates/mypage (deleted)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/lib/slib.php
r6172 r6211 20 20 21 21 /* ¥Æ¡¼¥Ö¥ë¤Î¸ºß¥Á¥§¥Ã¥¯ */ 22 function sfTabaleExists($table_name, $db_type=DB_TYPE) { 23 $objQuery = new SC_Query(); 22 function sfTabaleExists($table_name, $dsn = DEFAULT_DSN) { 23 $objQuery = new SC_Query($dsn); 24 list($db_type) = split(":", $dsn); 25 24 26 // postgresql¤Èmysql¤È¤Ç½èÍý¤òʬ¤±¤ë 25 27 if ($db_type == "pgsql") { -
temp/trunk/html/install/index.php
r6193 r6211 427 427 $secure_url = "http://" . $_SERVER['HTTP_HOST'] . $dir; 428 428 } 429 430 /* 429 431 430 // Ź̾¡¢´ÉÍý¼Ô¥á¡¼¥ë¥¢¥É¥ì¥¹¤ò¼èÆÀ¤¹¤ë¡£(ºÆ¥¤¥ó¥¹¥È¡¼¥ë»þ) 432 431 if(defined('DEFAULT_DSN')) { 432 $ret = sfTabaleExists("dtb_baseinfo", DEFAULT_DSN); 433 434 if($ret) { 435 print("ari"); 436 } else { 437 print("nasi"); 438 } 439 433 440 $objQuery = new SC_Query(); 434 441 $arrRet = $objQuery->select("shop_name, email01", "dtb_baseinfo"); … … 436 443 $admin_mail = $arrRet[0]['email01']; 437 444 } 438 */439 445 440 446 $objWebParam->addParam("Ź̾", "shop_name", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $shop_name);
Note: See TracChangeset
for help on using the changeset viewer.
