Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18959
Modified Files:
Tag: branch_0_6
serendipity_db_postgres.inc.php
serendipity_layout_table.inc.php
Log Message:
mfh
Index: serendipity_db_postgres.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_db_postgres.inc.php,v
retrieving revision 1.9.8.1
retrieving revision 1.9.8.2
diff -u -d -r1.9.8.1 -r1.9.8.2
--- serendipity_db_postgres.inc.php 5 May 2004 09:14:58 -0000 1.9.8.1
+++ serendipity_db_postgres.inc.php 5 May 2004 11:32:25 -0000 1.9.8.2
@@ -32,7 +32,7 @@
{
$limit_split = split(',', $limitstring);
if (count($limit_split) > 1) {
- $limit = ' LIMIT ' . $limit_split[1] . ' OFFSET ' . $limit_split[0];
+ $limit = ' LIMIT ' . $limit_split[0] . ' OFFSET ' . $limit_split[1];
} else {
$limit = ' LIMIT ' . $limit_split[0];
}
Index: serendipity_layout_table.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_layout_table.inc.php,v
retrieving revision 1.10.4.1
retrieving revision 1.10.4.2
diff -u -d -r1.10.4.1 -r1.10.4.2
--- serendipity_layout_table.inc.php 7 Apr 2004 12:38:18 -0000 1.10.4.1
+++ serendipity_layout_table.inc.php 5 May 2004 11:32:25 -0000 1.10.4.2
@@ -8,7 +8,7 @@
# http://www.jannis.to/programming/serendipity.html #
# #
##########################################################################
-include_once('serendipity_config.inc.php");
+include_once('serendipity_config.inc.php');
include_once(S9Y_INCLUDE_PATH . 'serendipity_plugin_api.php');
include_once(S9Y_INCLUDE_PATH . 'serendipity_sidebar_items.php');
@@ -53,7 +53,7 @@
echo SEARCH_TOO_SHORT;
break;
}
-
+
if ($r === true) {
echo sprintf(NO_ENTRIES_BLAHBLAH, $serendipity['GET']['searchTerm']);
break;
|