_TABLE_TYPE is now replaced
authorRoland Häder <roland@mxchange.org>
Wed, 4 Mar 2009 20:19:20 +0000 (20:19 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 4 Mar 2009 20:19:20 +0000 (20:19 +0000)
inc/databases.php
inc/db/lib-mysql3.php

index b4086a8abd583d21652083a609dbe50ff222a2da..2d50bba46b81a775881925b6d61d0882795e0fc2 100644 (file)
@@ -98,7 +98,7 @@ define('SERVER_URL', "http://www.mxchange.org");
 
 // Current SVN revision
 //define('CURR_SVN_REVISION', getActualVersion(0));
-define('CURR_SVN_REVISION', "821");
+define('CURR_SVN_REVISION', "823");
 define('CURR_SVN_DATE'    , getActualVersion(1));
 define('CURR_SVN_VERSION' , getActualVersion(2));
 
index b32507823876eb3fbfc042c2857fc65e6e1a18dc..67c37e02ef7d37985664e3d2258d2eed35316b03 100644 (file)
@@ -48,6 +48,9 @@ function SQL_QUERY ($sql_string, $F, $L) {
        // Replace {!_MYSQL_PREFIX!} with constant, closes #84. Thanks to profi-concept
        $sql_string = str_replace("{!_MYSQL_PREFIX!}", constant('_MYSQL_PREFIX'), $sql_string);
 
+       // Replace {!_TABLE_TYPE!} with constant
+       $sql_string = str_replace("{!_TABLE_TYPE!}", constant('_TABLE_TYPE'), $sql_string);
+
        // Starting time
        $querytimeBefore = array_sum(explode(' ', microtime()));