|
|
@ -1,4 +1,4 @@ |
|
|
|
<?php |
|
|
|
<?php |
|
|
|
$options=[]; |
|
|
|
if(isset($_POST["save_settings"])){ |
|
|
|
$options=[ |
|
|
@ -8,7 +8,7 @@ |
|
|
|
"admin_notif_message"=>$_POST["admin_notif_message"], |
|
|
|
"visitor_notif_message"=>$_POST["visitor_notif_message"], |
|
|
|
"edit_notify_message"=>$_POST["edit_notify_message"], |
|
|
|
"propose_edit_link"=>$_POST["propose_edit_link"] |
|
|
|
"propose_edit_link"=>html_entity_decode($_POST["propose_edit_link"]) |
|
|
|
]; |
|
|
|
update_option( "visitors_edits_options", $options ); |
|
|
|
flashMessage("Settings saved.",""); |
|
|
@ -29,7 +29,7 @@ |
|
|
|
<form action="" method="post"> |
|
|
|
<div class="control"> |
|
|
|
<label>Propose an edit link</label> |
|
|
|
<input type="text" name="propose_edit_link" value="<?php echo stripcslashes($options['propose_edit_link']) ?>"> |
|
|
|
<input type="text" name="propose_edit_link" value="<?php echo htmlentities(stripcslashes($options['propose_edit_link'])) ?>"> |
|
|
|
</div> |
|
|
|
<div class="control"> |
|
|
|
<label>Admin notification message</label> |
|
|
@ -68,4 +68,4 @@ function flashMessage($msg,$type){ |
|
|
|
</div> |
|
|
|
<?php |
|
|
|
} |
|
|
|
?>
|
|
|
|
?>
|