From 6dbe0dfbd02f1be6c2e25e1916cd26b627076cef Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Fri, 12 Mar 2010 22:00:35 -0500 Subject: Fixed & admin panel bug In the admin panel, many (if not all) dynamic links use AJAX to POST a page. These all contained & in the URL, which didn't resolve to & as it should. These have all been replaced. --- theme/admin/drafts.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'theme/admin/drafts.tpl') diff --git a/theme/admin/drafts.tpl b/theme/admin/drafts.tpl index 17757ba..e798fd9 100755 --- a/theme/admin/drafts.tpl +++ b/theme/admin/drafts.tpl @@ -7,7 +7,7 @@ function deletePost(id) { if (confirm("Are you sure you would like to delete this draft?")) { - postwith("/admin/drafts.php?pageID=&action=delete",{id:id}); + postwith("/admin/drafts.php?pageID=&action=delete",{id:id}); } } @@ -41,7 +41,7 @@ function bulkAction() { if (confirm("Are you sure you would like to delete the selected drafts?")) { - postwith("/admin/drafts.php?pageID=&action=deletes",{ids:ids}); + postwith("/admin/drafts.php?pageID=&action=deletes",{ids:ids}); } } } -- cgit 1.4.1