diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-04-02 14:53:44 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-04-02 14:53:44 +0000 |
commit | f69c60ece8c65db2828fc28107e3c1caf8985e89 (patch) | |
tree | 32b485322f7b45059772b6b8bfbe54bd3dd10b14 /phpBB/includes/functions_admin.php | |
parent | 51d9bdeca72e22dfa2f7cecc3e7867b125ee899b (diff) | |
download | forums-f69c60ece8c65db2828fc28107e3c1caf8985e89.tar forums-f69c60ece8c65db2828fc28107e3c1caf8985e89.tar.gz forums-f69c60ece8c65db2828fc28107e3c1caf8985e89.tar.bz2 forums-f69c60ece8c65db2828fc28107e3c1caf8985e89.tar.xz forums-f69c60ece8c65db2828fc28107e3c1caf8985e89.zip |
more changes
git-svn-id: file:///svn/phpbb/trunk@2463 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 456742fd38..353e36b4b9 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -71,7 +71,7 @@ function sync($type, $id) while( $row = $db->sql_fetchrow($result) ) { - sync("forum", $row['forum_id']); + sync('forum', $row['forum_id']); } break; @@ -85,7 +85,7 @@ function sync($type, $id) while( $row = $db->sql_fetchrow($result) ) { - sync("topic", $row['topic_id']); + sync('topic', $row['topic_id']); } break; |