Update persist_form_var.php

This commit is contained in:
FusionPBX 2018-06-29 19:59:19 -06:00 committed by GitHub
parent 7a819a7101
commit c011fcbb90
1 changed files with 13 additions and 13 deletions

View File

@ -17,25 +17,25 @@
The Initial Developer of the Original Code is The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2012 Portions created by the Initial Developer are Copyright (C) 2008-2018
the Initial Developer. All Rights Reserved. the Initial Developer. All Rights Reserved.
Contributor(s): Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
*/ */
function persistformvar($formarray) { function persistformvar($form_array) {
// Remember Form Input Values // Remember Form Input Values
if(is_array($formarray)) { if (is_array($form_array)) {
$content .= "<form method='post' action='".$_SERVER["HTTP_REFERER"]."' target='_self'>\n"; $content .= "<form method='post' action='".escape($_SERVER["HTTP_REFERER"])."' target='_self'>\n";
foreach($formarray as $key => $val) { foreach($form_array as $key => $val) {
if($key == "XID" || $key == "ACT" || $key == "RET") continue; if ($key == "XID" || $key == "ACT" || $key == "RET") continue;
if ($key != "persistform") { //clears the persistform value if ($key != "persistform") { //clears the persistform value
$content .= "<input type='hidden' name='$key' value='$val' />\n"; $content .= " <input type='hidden' name='".escape($key)."' value='".escape($val)."' />\n";
} }
} }
$content .= "<input type='hidden' name='persistformvar' value='true' />\n"; //sets persistform to yes $content .= " <input type='hidden' name='persistformvar' value='true' />\n"; //sets persistform to yes
$content .= "<input class='btn' type='submit' value='Back' />\n"; $content .= " <input class='btn' type='submit' value='Back' />\n";
$content .= "</form>\n"; $content .= "</form>\n";
} }
echo $content; echo $content;