diff options
Diffstat (limited to 'admin/pages')
-rw-r--r-- | admin/pages/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/pages/functions.php b/admin/pages/functions.php index c4d4369..15b1f0c 100644 --- a/admin/pages/functions.php +++ b/admin/pages/functions.php @@ -377,9 +377,9 @@ function DeletePage($page_id) ?> - <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post"> + <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <table> - <th>Are you <u>SURE</u> you want to delete the page titled: '<?php echo $page['title']?>'?<br />All articles attached to this page will be deleted as well.</th> + <th>Are you <u>SURE</u> you want to delete the page titled: '<?php echo $page['title'];?>'?<br />All articles attached to this page will be deleted as well.</th> <tr><th><button name="proceed">Yes</button> <button name="cancel">No</button></th></tr> </table> </form> |