Minahito
minah****@users*****
2006年 9月 14日 (木) 19:23:15 JST
Index: xoops2jp/html/install/class/simplewizard.php diff -u xoops2jp/html/install/class/simplewizard.php:1.1.2.1 xoops2jp/html/install/class/simplewizard.php:1.1.2.2 --- xoops2jp/html/install/class/simplewizard.php:1.1.2.1 Sat Apr 1 10:32:57 2006 +++ xoops2jp/html/install/class/simplewizard.php Thu Sep 14 19:23:15 2006 @@ -61,7 +61,7 @@ if (!empty($this->_v[$name])) { return $this->_v[$name]; } else { - return $false; + return false; } } Index: xoops2jp/html/install/class/settingmanager.php diff -u xoops2jp/html/install/class/settingmanager.php:1.2.8.2 xoops2jp/html/install/class/settingmanager.php:1.2.8.3 --- xoops2jp/html/install/class/settingmanager.php:1.2.8.2 Sat Sep 9 23:39:18 2006 +++ xoops2jp/html/install/class/settingmanager.php Thu Sep 14 19:23:15 2006 @@ -29,7 +29,7 @@ * setting manager for XOOPS installer * * @author Haruki Setoyama <haruk****@plane*****> -* @version $Id: settingmanager.php,v 1.2.8.2 2006/09/09 14:39:18 tom_g3x Exp $ +* @version $Id: settingmanager.php,v 1.2.8.3 2006/09/14 10:23:15 minahito Exp $ * @access public **/ class setting_manager { @@ -72,7 +72,7 @@ if ( substr($filepath, -1) == '/' ) { $filepath = substr($filepath, 0, -1); } - $protocol = ($_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://'; + $protocol = (!empaty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://'; $this->xoops_url = (!empty($filepath)) ? $protocol.$_SERVER['HTTP_HOST'].'/'.$filepath : $protocol.$_SERVER['HTTP_HOST']; } } Index: xoops2jp/html/install/class/dbmanager.php diff -u xoops2jp/html/install/class/dbmanager.php:1.2.8.3 xoops2jp/html/install/class/dbmanager.php:1.2.8.4 --- xoops2jp/html/install/class/dbmanager.php:1.2.8.3 Tue May 16 21:59:36 2006 +++ xoops2jp/html/install/class/dbmanager.php Thu Sep 14 19:23:15 2006 @@ -32,7 +32,7 @@ * database manager for XOOPS installer * * @author Haruki Setoyama <haruk****@plane*****> -* @version $Id: dbmanager.php,v 1.2.8.3 2006/05/16 12:59:36 nobunobu Exp $ +* @version $Id: dbmanager.php,v 1.2.8.4 2006/09/14 10:23:15 minahito Exp $ * @access public **/ class db_manager { @@ -164,7 +164,7 @@ $reports[] = _OKIMG.sprintf(_INSTALL_L163, "<b>$key</b>"); } } - $content .= "<br />\n"; +// $content .= "<br />\n"; //< What's!? if (isset($this->f_tables['create'])) { foreach($this->f_tables['create'] as $key => $val){ $reports[] = _NGIMG.sprintf(_INSTALL_L118, "<b>$key</b>");