diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-01-20 20:57:45 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-01-20 20:57:45 +0000 |
commit | 9c1a4bdac16945c7d616b3449cc7d97a2548fc22 (patch) | |
tree | 27e35d979f7b8fd6b7844a6cba941b5b04a438bd /phpBB/includes/db/mysql.php | |
parent | a7ef13c639e048e9ee9edc25e7f7d9a5bf155812 (diff) | |
download | forums-9c1a4bdac16945c7d616b3449cc7d97a2548fc22.tar forums-9c1a4bdac16945c7d616b3449cc7d97a2548fc22.tar.gz forums-9c1a4bdac16945c7d616b3449cc7d97a2548fc22.tar.bz2 forums-9c1a4bdac16945c7d616b3449cc7d97a2548fc22.tar.xz forums-9c1a4bdac16945c7d616b3449cc7d97a2548fc22.zip |
- bugfixes
- default sort options for posts too
- adjusted format_date to remove the (time intensive) preg_ calls
- temporary style.php code.
git-svn-id: file:///svn/phpbb/trunk@5068 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/mysql.php')
-rw-r--r-- | phpBB/includes/db/mysql.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/mysql.php index ec9f17bf27..aa9e6c1a39 100644 --- a/phpBB/includes/db/mysql.php +++ b/phpBB/includes/db/mysql.php @@ -263,8 +263,6 @@ class sql_db $query_id = $this->query_result; } - // This method is called too often... do not waste memory by calling/checking unneeded things -// if (method_exists($cache, 'sql_fetchrow') && $cache->sql_exists($query_id)) if (isset($cache->sql_rowset[$query_id])) { return $cache->sql_fetchrow($query_id); |