aboutsummaryrefslogtreecommitdiff
path: root/www/inc/comment.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/inc/comment.inc.php')
-rw-r--r--www/inc/comment.inc.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/www/inc/comment.inc.php b/www/inc/comment.inc.php
deleted file mode 100644
index 627a747..0000000
--- a/www/inc/comment.inc.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-/*
- * The HTML contained in this file is valid XHTML 1.0 Strict
- */
-
-echo "<div id=\"comment_block\">\n";
-
-?>
- <?php echo"<div id=\"showhideform\"><strong> " . __('Post a Comment') . "</strong>:"; ?>
- <span class="comment_toggle">
- [&nbsp;
- <?php echo"<a href=\"javascript:toggle_comment()\"><span id=\"showlink\">" . __('Show Form') . "</span><span id=\"hidelink\" style=\"display:none;\">" . __('Hide Form') . "</span></a>"; ?>
- &nbsp;]
- </span>
- </div>
-
- <div id="comment_form" style="display: none;">
-<?php
-$page->form_start($ThisUrl, "post", NULL);
-$page->input("text", "commentname", $username, __('Name:'), NULL, _('Enter your name.') );
-$page->input("checkbox", "savecommentname", "1", __('Remember Name:'), "yes",
- __('Should the browser remember your name?'));
-$magic_number = random_digits(4);
-//temporary. should generate an image instead
-echo "<div class=\"row\"><div class=\"control\">$magic_number</div></div>\n";
-$page->input("hidden", "commentkolacek", md5($magic_number), NULL, NULL, NULL);
-$page->input("text", "commentspamcheck", "", __('Retype PIN Above:'), NULL, __('Enter the number shown above.'));
-$page->input("textarea", "commentdata", "", __('Comment') . " :" , NULL, __('Allowed HTML tags: a,b,i,ul,li,blockquote,br.') );
-$page->input("submit", "", __('Send') , NULL, NULL, NULL);
-$page->form_end();
-?>
- </div>
-</div>