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/posts.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'theme/admin/posts.tpl') diff --git a/theme/admin/posts.tpl b/theme/admin/posts.tpl index c68f5fd..676d789 100755 --- a/theme/admin/posts.tpl +++ b/theme/admin/posts.tpl @@ -7,7 +7,7 @@ function deletePost(id) { if (confirm("Are you sure you would like to delete this post?")) { - postwith("/admin/posts.php?pageID=&action=delete",{id:id}); + postwith("/admin/posts.php?pageID=&action=delete",{id:id}); } } @@ -41,7 +41,7 @@ function bulkAction() { if (confirm("Are you sure you would like to delete the selected posts?")) { - postwith("/admin/posts.php?pageID=&action=deletes",{ids:ids}); + postwith("/admin/posts.php?pageID=&action=deletes",{ids:ids}); } } } -- cgit 1.4.1