From 25a101d128ada4cac4e634b1c0fdd881551fd376 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 7 Dec 2008 20:25:36 -0500 Subject: Redid multiple tag system This new tag system has a seperate table for tags. This way, a tag cloud can be made much more easily than if using the previous system. This changeset requires manual maintinence. --- includes/updatePending.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/updatePending.php') diff --git a/includes/updatePending.php b/includes/updatePending.php index 79ab1c4..9a9b508 100755 --- a/includes/updatePending.php +++ b/includes/updatePending.php @@ -40,7 +40,7 @@ if ((!isset($disablePendingQueue)) && (date('j') != 'Sat')) $getpost2 = mysql_query($getpost); $getpost3 = mysql_fetch_array($getpost2); - postBlogPost($getpost3['title'], $getpost3['author'], $getpost3['tags'], $getpost3['text']); + postBlogPost($getpost3['title'], $getpost3['author'], explode(',', $getpost3['tags']), $getpost3['text']); $delpost = "DELETE FROM pending WHERE id = " . $getpost3['id']; $delpost2 = mysql_query($delpost); -- cgit 1.4.1