diff options
author | Callum Macrae <callum@lynxphp.com> | 2011-08-24 12:25:54 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 02:09:14 +0200 |
commit | 7a933bdb5ad4a9bc4877a7d4d516fa0b21d9e4c0 (patch) | |
tree | 67de4f7f19dbde414388b731fb64751fb0092fe3 /phpBB/styles/script.js | |
parent | c92b30d66cbb2839369c04172eb5ae9bacd27a16 (diff) | |
download | forums-7a933bdb5ad4a9bc4877a7d4d516fa0b21d9e4c0.tar forums-7a933bdb5ad4a9bc4877a7d4d516fa0b21d9e4c0.tar.gz forums-7a933bdb5ad4a9bc4877a7d4d516fa0b21d9e4c0.tar.bz2 forums-7a933bdb5ad4a9bc4877a7d4d516fa0b21d9e4c0.tar.xz forums-7a933bdb5ad4a9bc4877a7d4d516fa0b21d9e4c0.zip |
[ticket/10328] Renamed the JSON class, also now using autoloading.
It is no longer static, and uses autoloading. It has also been renamed
from JSON to phpbb_json_response.
PHPBB3-10328
Diffstat (limited to 'phpBB/styles/script.js')
-rw-r--r-- | phpBB/styles/script.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/script.js b/phpBB/styles/script.js index 1b9262f585..8814d105e1 100644 --- a/phpBB/styles/script.js +++ b/phpBB/styles/script.js @@ -365,7 +365,7 @@ phpbb.add_ajax_callback('post_delete', function(el) { } }).add_ajax_callback('zebra', function(el, res) { if (res.success) { - $('.zebra').html(res.message); + $('.zebra').html(res.MESSAGE_TEXT); $($('.zebra').get(1)).remove(); } });; |