projects
/
s9y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb9b43b
)
we don'T need numerical index for this query. Thanks to Demian Turner!
author
garvinhicking
<garvinhicking>
Mon, 19 Sep 2005 07:21:04 +0000
(07:21 +0000)
committer
garvinhicking
<garvinhicking>
Mon, 19 Sep 2005 07:21:04 +0000
(07:21 +0000)
include/functions_entries.inc.php
patch
|
blob
|
history
diff --git
a/include/functions_entries.inc.php
b/include/functions_entries.inc.php
index 555701e8d46958bfec27976d926d780d366f54ae..52b4c64114fd3e17959c0d8014c092ee6f4d1fe9 100644
(file)
--- a/
include/functions_entries.inc.php
+++ b/
include/functions_entries.inc.php
@@
-272,7
+272,7
@@
function serendipity_fetchEntries($range = null, $full = true, $limit = '', $fet
// DEBUG:
// die($query);
- $ret = serendipity_db_query($query);
+ $ret = serendipity_db_query($query
, false, 'assoc'
);
if (is_string($ret)) {
die("Query failed: $ret");
@@
-309,7
+309,7
@@
function serendipity_fetchEntries($range = null, $full = true, $limit = '', $fet
ON ec.categoryid = c.categoryid
WHERE " . serendipity_db_in_sql('ec.entryid', $search_ids);
- $search_ret = serendipity_db_query($query);
+ $search_ret = serendipity_db_query($query
, false, 'assoc'
);
if (is_array($search_ret)) {
foreach($search_ret AS $i => $entry) {