Changeset 1311
- Timestamp:
- 09/06/2005 04:57:01 PM (3 years ago)
- Location:
- jlog/trunk
- Files:
-
- 1 removed
- 2 modified
-
admin/comments.php (modified) (1 diff)
-
img/JLOG_mail.png (deleted)
-
scripts/comments.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jlog/trunk/admin/comments.php
r1292 r1311 73 73 $l["comments_url_href"] = $l['admin']["comments_url_href"]; 74 74 $l["comments_url_node"] = $l['admin']["comments_url_node"]; 75 75 76 76 if($data['form_submitted'] == $l['comments_preview']) { 77 77 $c['main'] .= "\n <h2>".$l['admin']['comments_change_h']."</h2> -
jlog/trunk/scripts/comments.php
r1300 r1311 31 31 if($com_form['mail_by_comment'] == 1) $output .= "checked='checked'"; 32 32 $output .= " value='1' /> <label for='mail_by_comment'>".$l['comments_mail_by_comment']."</label> "; 33 if(defined(JLOG_ADMIN) === false) { 33 if(JLOG_ADMIN === true) $output .= "\n <input type='hidden' value='".$com_form['id']."' name='id' />\n"; 34 else { 34 35 $output .= " <input type='checkbox' id='cookie' name='cookie' "; 35 36 if($com_form['cookie'] == 1) $output .= "checked='checked'"; 36 37 $output .= " value='1' /> <label for='cookie'>".$l['comments_save_data']."</label>\n"; 37 38 } 38 else $output .= "\n <input type='hidden' value='".$com_form['id']."' name='id' />\n";39 39 $output .= " <input type='hidden' value='".$com_form['sid']."' name='sid' /> 40 40 </p>
