Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohamed Ashraf <mohamed.ashraf.213@gmail.com>2013-06-19 23:38:19 +0400
committerMohamed Ashraf <mohamed.ashraf.213@gmail.com>2013-06-19 23:38:19 +0400
commit62071d9aea664a9a0e0c17791ba92ecfc1bdab58 (patch)
tree62f82361bd5cae52a4856de9208cdbca5524d6e4 /js/error_report.js
parent6ddb9458d00a8c89ed12ba1e973249f559445595 (diff)
Added translation arround strings and error report now being sent to non-existent server
Diffstat (limited to 'js/error_report.js')
-rw-r--r--js/error_report.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/error_report.js b/js/error_report.js
index 02b67a2c20..d47bb75de2 100644
--- a/js/error_report.js
+++ b/js/error_report.js
@@ -19,7 +19,7 @@ function error_handler(message, file, line) {
function showReportDialog (message, file, line) {
regex = /token=([\da-z]+)/
token = regex.exec($("#selflink a")[0].href)[1]
-
+
var report_data = {
"ajax_request": true,
"token": token,
@@ -40,7 +40,7 @@ function showReportDialog (message, file, line) {
$dialog = $(this);
post_data = $.extend(report_data, {
send_error_report: true,
- extra_info: $("#report_extra_info").val()
+ description: $("#report_description").val()
})
$.post("error_report.php", post_data, function (data) {
$dialog.dialog('close')
@@ -48,7 +48,7 @@ function showReportDialog (message, file, line) {
//in the case of an error, show the error message returned.
PMA_ajaxShowMessage(data.error, false);
} else {
- PMA_ajaxShowMessage("the page will reload shortly", false);
+ PMA_ajaxShowMessage(data.message, false);
setTimeout("window.location.reload()", 2000);
}
})
@@ -82,7 +82,7 @@ function showReportDialog (message, file, line) {
function showErrorNotification() {
removeErrorNotification()
- $div = $('<div style="position:fixed;bottom:0px;left:5px;right:5px;'
+ $div = $('<div style="position:fixed;bottom:0px;left:247px;right:5px;'
+'z-index:1000" class="error" id="error_notification"></div>')
html = ""
html += '<img src="themes/dot.gif" title="" alt="" class="icon ic_s_error">'