summary refs log tree commit diff stats
path: root/includes
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-12-09 20:55:51 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-12-09 20:55:51 -0500
commita11718cc70dbc7c03e44e7761deba5e17bdfd7d5 (patch)
tree6316eb7144342bb7be688dde61fa0f799d1b5ab4 /includes
parent6079598aeba3b0569de36074c46a77262d98fe88 (diff)
downloadfourisland-a11718cc70dbc7c03e44e7761deba5e17bdfd7d5.tar.gz
fourisland-a11718cc70dbc7c03e44e7761deba5e17bdfd7d5.tar.bz2
fourisland-a11718cc70dbc7c03e44e7761deba5e17bdfd7d5.zip
Fixed updatePending.php tag bug
It was incorrectly fixed last time, but this time should be right.
Diffstat (limited to 'includes')
-rwxr-xr-xincludes/updatePending.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/updatePending.php b/includes/updatePending.php index c734c9c..07fa678 100755 --- a/includes/updatePending.php +++ b/includes/updatePending.php
@@ -40,7 +40,7 @@ if ((!isset($disablePendingQueue)) && (date('j') != 'Sat'))
40 $getpost2 = mysql_query($getpost); 40 $getpost2 = mysql_query($getpost);
41 $getpost3 = mysql_fetch_array($getpost2); 41 $getpost3 = mysql_fetch_array($getpost2);
42 42
43 postBlogPost($getpost3['title'], $getpost3['author'], explode(',', getTags($getpost3['id'], 'pending')), $getpost3['text']); 43 postBlogPost($getpost3['title'], $getpost3['author'], getTags($getpost3['id'], 'pending'), $getpost3['text']);
44 removeTags($getpost3['id'], 'pending'); 44 removeTags($getpost3['id'], 'pending');
45 45
46 $delpost = "DELETE FROM pending WHERE id = " . $getpost3['id']; 46 $delpost = "DELETE FROM pending WHERE id = " . $getpost3['id'];