OSDN Git Service

Yet another small update.
authorKazuki Przyborowski <kazuki.przyborowski@gmail.com>
Wed, 25 May 2011 06:12:34 +0000 (06:12 +0000)
committerKazuki Przyborowski <kazuki.przyborowski@gmail.com>
Wed, 25 May 2011 06:12:34 +0000 (06:12 +0000)
git-svn-id: svn://svn.code.sf.net/p/intdb/svn/trunk@658 2b68903e-0b30-0410-9a39-a2e4f3c5be39

inc/function.php
inc/misc/setcheck.php
inc/versioninfo.php

index 690a1b3..50346e1 100644 (file)
@@ -11,7 +11,7 @@
     Copyright 2004-2011 iDB Support - http://idb.berlios.de/
     Copyright 2004-2011 Game Maker 2k - http://gamemaker2k.org/
 
-    $FileInfo: function.php - Last Update: 05/02/2011 SVN 646 - Author: cooldude2k $
+    $FileInfo: function.php - Last Update: 05/25/2011 SVN 658 - Author: cooldude2k $
 */
 $File3Name = basename($_SERVER['SCRIPT_NAME']);
 if ($File3Name=="function.php"||$File3Name=="/function.php") {
@@ -142,7 +142,7 @@ function qstring($qstr=";",$qsep="=")
 { $_GET = array(); $_GET = null;
 if (!isset($_SERVER['QUERY_STRING'])) {
 $_SERVER['QUERY_STRING'] = getenv('QUERY_STRING'); }
-ini_get("arg_separator.input", $qstr);
+ini_set("arg_separator.input", $qstr);
 $_SERVER['QUERY_STRING'] = urldecode($_SERVER['QUERY_STRING']);
 $preqs = explode($qstr,$_SERVER["QUERY_STRING"]);
 $qsnum = count($preqs); $qsi = 0;
@@ -154,6 +154,16 @@ $preqst[0] = killbadvars($preqst[0]);
 if($preqst[0]!=null) {
 $_GET[$preqst[0]] = $preqst[1]; }
 ++$qsi; } return true; }
+if($Settings['qstr']!="&"&&
+       $Settings['qstr']!="/") {
+qstring($Settings['qstr'],$Settings['qsep']); 
+if(!isset($_GET['page'])) { $_GET['page'] = null; }
+if(!isset($_GET['act'])) { $_GET['act'] = null; }
+if(!isset($_POST['act'])) { $_POST['act'] = null; }
+if(!isset($_GET['id'])) { $_GET['id'] = null; } 
+if(!isset($_GET['debug'])) { $_GET['debug'] = "false"; }
+if(!isset($_GET['post'])) { $_GET['post'] = null; }
+if(!isset($_POST['License'])) { $_POST['License'] = null; } }
 if($_SERVER['PATH_INFO']==null) {
        if(getenv('PATH_INFO')!=null&&getenv('PATH_INFO')!="1") {
 $_SERVER['PATH_INFO'] = getenv('PATH_INFO'); }
index 84b606b..62f22ba 100644 (file)
@@ -11,7 +11,7 @@
     Copyright 2004-2011 iDB Support - http://idb.berlios.de/
     Copyright 2004-2011 Game Maker 2k - http://gamemaker2k.org/
 
-    $FileInfo: setcheck.php - Last Update: 12/07/2010 SVN 600 - Author: cooldude2k $
+    $FileInfo: setcheck.php - Last Update: 05/25/2011 SVN 658 - Author: cooldude2k $
 */
 $File3Name = basename($_SERVER['SCRIPT_NAME']);
 if ($File3Name=="setcheck.php"||$File3Name=="/setcheck.php") {
@@ -126,16 +126,16 @@ if($Settings['qsep']==$Settings['qstr']) {
 if($Settings['qstr']=="/"||
        $Settings['qstr']=="&") {
        $Settings['qsep'] = "="; }
-if($Settings['qstr']!="&"&&
+/*if($Settings['qstr']!="&"&&
        $Settings['qstr']!="/") {
-qstring($Settings['qstr'],$Settings['qsep']);
+qstring($Settings['qstr'],$Settings['qsep']); }*/
 if(!isset($_GET['page'])) { $_GET['page'] = null; }
 if(!isset($_GET['act'])) { $_GET['act'] = null; }
 if(!isset($_POST['act'])) { $_POST['act'] = null; }
 if(!isset($_GET['id'])) { $_GET['id'] = null; } 
 if(!isset($_GET['debug'])) { $_GET['debug'] = "false"; }
 if(!isset($_GET['post'])) { $_GET['post'] = null; }
-if(!isset($_POST['License'])) { $_POST['License'] = null; } }
+if(!isset($_POST['License'])) { $_POST['License'] = null; }
 if(!isset($Settings['enable_https'])) {
   $Settings['enable_https'] = "off";  }
 if($Settings['enable_https']!="on"&&
index 1ebc7b2..c265bda 100644 (file)
@@ -11,7 +11,7 @@
     Copyright 2004-2011 iDB Support - http://idb.berlios.de/
     Copyright 2004-2011 Game Maker 2k - http://gamemaker2k.org/
 
-    $FileInfo: versioninfo.php - Last Update: 05/24/2011 SVN 657 - Author: cooldude2k $
+    $FileInfo: versioninfo.php - Last Update: 05/25/2011 SVN 658 - Author: cooldude2k $
 */
 $File3Name = basename($_SERVER['SCRIPT_NAME']);
 if ($File3Name=="versioninfo.php"||$File3Name=="/versioninfo.php") {
@@ -27,8 +27,8 @@ function version_info($proname,$subver,$ver,$supver,$reltype,$svnver,$showsvn) {
        return $return_var; }
 // Version number and date stuff. :P
 $VER1[0] = 0; $VER1[1] = 4; $VER1[2] = 4; $VERFull[1] = $VER1[0].".".$VER1[1].".".$VER1[2];
-$VER2[0] = "Alpha"; $VER2[1] = "Al"; $VER2[2] = "SVN"; $SubVerN = 657;
-$SVNDay[0] = 05; $SVNDay[1] = 24; $SVNDay[2] = 2011; $SVNDay[3] = $SVNDay[0]."/".$SVNDay[1]."/".$SVNDay[2];
+$VER2[0] = "Alpha"; $VER2[1] = "Al"; $VER2[2] = "SVN"; $SubVerN = 658;
+$SVNDay[0] = 05; $SVNDay[1] = 25; $SVNDay[2] = 2011; $SVNDay[3] = $SVNDay[0]."/".$SVNDay[1]."/".$SVNDay[2];
 $AltName = "RDB"; $AltName2 = "ReneeDB"; $RName = "iDB"; $SFName = "IntDB";
 $RFullName = "Internet Discussion Boards"; $AltFullName = "Renee Discussion Boards";
 if(!isset($Settings['usealtname'])) { $Settings['usealtname'] = "no"; }