[geeklog-cvs] geeklog: Fixed PGSQL line that was missing a space (bug #0001418)

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Fri Jan 20 10:52:44 EST 2012


changeset 8480:9d479db12ac9
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/9d479db12ac9
user: Tom <websitemaster at cogeco.net>
date: Fri Jan 20 10:52:03 2012 -0500
description:
Fixed PGSQL line that was missing a space (bug #0001418)

diffstat:

 public_html/lib-common.php |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r ceb842950b65 -r 9d479db12ac9 public_html/lib-common.php
--- a/public_html/lib-common.php	Fri Jan 20 10:42:11 2012 -0500
+++ b/public_html/lib-common.php	Fri Jan 20 10:52:03 2012 -0500
@@ -3705,7 +3705,7 @@
         $blocksql['mssql'] .= "group_id, perm_owner, perm_group, perm_members, perm_anon, allow_autotags,UNIX_TIMESTAMP(rdfupdated) AS date ";
 
         $blocksql['mysql'] = "SELECT *,UNIX_TIMESTAMP(rdfupdated) AS date ";
-        $blocksql['pgsql'] =  'SELECT *, date_part(\'epoch\', rdfupdated) AS date';
+        $blocksql['pgsql'] =  'SELECT *, date_part(\'epoch\', rdfupdated) AS date ';
 
         $commonsql = "FROM {$_TABLES['blocks']} WHERE name = '"
                    . $A['name'] . '_' . $lang . "'";



More information about the geeklog-cvs mailing list