Forráskód Böngészése

Update persist_form.php

FusionPBX 7 éve
szülő
commit
9875d4acd8
1 módosított fájl, 13 hozzáadás és 13 törlés
  1. 13 13
      resources/persist_form.php

+ 13 - 13
resources/persist_form.php

@@ -17,26 +17,26 @@
 
 	The Initial Developer of the Original Code is
 	Mark J Crane <[email protected]>
-	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.
 
 	Contributor(s):
 	Mark J Crane <[email protected]>
 */
 
-function persistform($formarray) {
+function persistform($form_array) {
 	// Remember Form Input Values
-	if(is_array($formarray)) {
-	  $content .= "<form method='post' action='".$_SERVER["HTTP_REFERER"]."' target='_self'>\n";
-	 foreach($formarray as $key => $val) {
-	   if($key == "XID" || $key == "ACT" || $key == "RET") continue;
-       if ($key != "persistform") { //clears the persistform value
-            $content .= "<input type='hidden' name='$key' value='$val' />\n";
-       }
-	 }
-     $content .= "<input type='hidden' name='persistform' value='1' />\n"; //sets persistform to yes
-	 $content .= "<input class='btn' type='submit' value='Back' />\n";
-	 $content .= "</form>\n";
+	if (is_array($form_array)) {
+		$content .= "<form method='post' action='".$_SERVER["HTTP_REFERER"]."' target='_self'>\n";
+		foreach ($form_array as $key => $val) {
+			if ($key == "XID" || $key == "ACT" || $key == "RET") continue;
+			if ($key != "persistform") { //clears the persistform value
+			    $content .= "<input type='hidden' name='".escape($key)."' value='".escape($val)."' />\n";
+			}
+		}
+		$content .= "<input type='hidden' name='persistform' value='1' />\n"; //sets persistform to yes
+		$content .= "<input class='btn' type='submit' value='Back' />\n";
+		$content .= "</form>\n";
 	}
 	return $content;
 }