Update meme voting
This commit is contained in:
parent
adb738c12f
commit
b0dae7da6d
@ -6,8 +6,8 @@ function generateScriptData($phpArray):string {
|
||||
// Generate JavaScript code to save each array element to local storage
|
||||
$out = "<script>";
|
||||
foreach ($phpArray as $key => $value) {
|
||||
$escapedKey = addslashes($key); // Escape special characters in the key
|
||||
$escapedValue = addslashes($value); // Escape special characters in the value
|
||||
$escapedKey = addslashes(strval($key)); // Escape special characters in the key
|
||||
$escapedValue = addslashes(strval($value)); // Escape special characters in the value
|
||||
|
||||
$out .= "localStorage.setItem('$escapedKey', '$escapedValue');";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user