aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index efcb6eeb68..09da9b7753 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -111,7 +111,7 @@ define('POST_ANNOUNCE', 2);
define('POST_GLOBAL', 3);
// Lastread types
-define('TRACK_NORMAL', 0); // not used at the moment
+define('TRACK_NORMAL', 0);
define('TRACK_POSTED', 1);
// Notify methods
@@ -250,7 +250,7 @@ $db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false);
// Grab global variables, re-cache if necessary
if ($config = $cache->get('config'))
{
- $sql = 'SELECT *
+ $sql = 'SELECT config_name, config_value
FROM ' . CONFIG_TABLE . '
WHERE is_dynamic = 1';
$result = $db->sql_query($sql);
@@ -264,7 +264,7 @@ else
{
$config = $cached_config = array();
- $sql = 'SELECT *
+ $sql = 'SELECT config_name, config_value, is_dynamic
FROM ' . CONFIG_TABLE;
$result = $db->sql_query($sql);