From d82cc1429865916e6a3f676f27bb5a8944c63b9e Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 5 Aug 2007 02:18:37 +0000 Subject: [PATCH] Remove bogus . --- www/articles.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/articles.php b/www/articles.php index 8a2b025..49b4a5f 100644 --- a/www/articles.php +++ b/www/articles.php @@ -241,8 +241,8 @@ switch ($op) html_start_links(1); html_link("Return to Articles", "$PHP_SELF?L$options"); - html_link("View Article #$id", "$PHP_SELF?L$id$options"); - html_link("Modify Article #$id", "$PHP_SELF?M$id$options"); + html_link("View Article #$id", "$PHP_SELF?L$id$options"); + html_link("Modify Article #$id", "$PHP_SELF?M$id$options"); html_end_links(); print("

Delete Article #$id

\n"); @@ -299,8 +299,8 @@ switch ($op) if ($LOGIN_LEVEL >= AUTH_DEVEL || $row['create_user'] == $LOGIN_USER) { - html_link("Modify Article", "$PHP_SELF?M$id$options"); - html_link("Delete Article", "$PHP_SELF?D$id$options"); + html_link("Modify Article", "$PHP_SELF?M$id$options"); + html_link("Delete Article", "$PHP_SELF?D$id$options"); } html_end_links();