barbass: используем sessionStorage

parent e2eb2ded
...@@ -189,11 +189,11 @@ var ETY = { ...@@ -189,11 +189,11 @@ var ETY = {
}, },
get_storage: function(key) { get_storage: function(key) {
if (window['localStorage'] != null) { if (window['sessionStorage'] != null) {
if (!localStorage.getItem(key+"")) { if (!sessionStorage.getItem(key+"")) {
return 0; return 0;
} else { } else {
var data = localStorage.getItem(key+""); var data = sessionStorage.getItem(key+"");
return data; return data;
} }
} else { } else {
...@@ -202,8 +202,8 @@ var ETY = { ...@@ -202,8 +202,8 @@ var ETY = {
}, },
set_storage: function(key, data) { set_storage: function(key, data) {
if (window['localStorage'] != null) { if (window['sessionStorage'] != null) {
localStorage.setItem(key+"", data); sessionStorage.setItem(key+"", data);
} }
} }
......
...@@ -86,7 +86,6 @@ try { ...@@ -86,7 +86,6 @@ try {
} }
if ($email_users !== 0) { if ($email_users !== 0) {
try { try {
//FIXED !!!удалить из таблицы поле email
$data = array('NULL', $email_users[0]['site'], $url, $error_text,$comment, 0); $data = array('NULL', $email_users[0]['site'], $url, $error_text,$comment, 0);
$STH = $DBH->prepare("INSERT INTO messages (id, id_site, link, error_text, comment, datetime, status) VALUES (?, ?, ?, ?, ?, DATE_FORMAT(NOW(), '%Y-%m-%d %H:%i:%s'), ?)"); $STH = $DBH->prepare("INSERT INTO messages (id, id_site, link, error_text, comment, datetime, status) VALUES (?, ?, ?, ?, ?, DATE_FORMAT(NOW(), '%Y-%m-%d %H:%i:%s'), ?)");
$STH->execute($data); $STH->execute($data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment