aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/search_fill.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-02-26 13:17:45 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-02-26 13:17:45 +0000
commitd95588823a7e2797fa3502ea145ca54689135a16 (patch)
tree927aa2b4faa6b3657eb4718b19c4df83cf8eac61 /phpBB/develop/search_fill.php
parente295cab3043d1eafc3ab4344ab83dae171e058cc (diff)
downloadforums-d95588823a7e2797fa3502ea145ca54689135a16.tar
forums-d95588823a7e2797fa3502ea145ca54689135a16.tar.gz
forums-d95588823a7e2797fa3502ea145ca54689135a16.tar.bz2
forums-d95588823a7e2797fa3502ea145ca54689135a16.tar.xz
forums-d95588823a7e2797fa3502ea145ca54689135a16.zip
only minor changes, some notes, played around with the code... nothing special.
git-svn-id: file:///svn/phpbb/trunk@3543 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/search_fill.php')
-rw-r--r--phpBB/develop/search_fill.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php
index 8cfea84f02..d8a2dfc11d 100644
--- a/phpBB/develop/search_fill.php
+++ b/phpBB/develop/search_fill.php
@@ -33,7 +33,7 @@ $synonym_array = file($phpbb_root_path . "language/lang_english/search_synonyms.
// Fetch a batch of posts_text entries
//
$sql = "SELECT COUNT(*) as total, MAX(post_id) as max_post_id
- FROM ". POSTS_TEXT_TABLE;
+ FROM ". POSTS_TABLE;
if ( !($result = $db->sql_query($sql)) )
{
$error = $db->sql_error();
@@ -56,7 +56,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize)
$batchcount++;
$sql = "SELECT *
- FROM " . POSTS_TEXT_TABLE . "
+ FROM " . POSTS_TABLE . "
WHERE post_id
BETWEEN $batchstart
AND $batchend";