From b94e39148ba77bfecadee51b7dde99dbb9d555b2 Mon Sep 17 00:00:00 2001 From: czaks Date: Tue, 29 Apr 2014 18:37:29 +0200 Subject: [PATCH] remove quick-reply-old. it probably doesn't work now, it certainly isn't maintained. this is an old cruft and if needed, it needs rewriting. --- inc/config.php | 3 --- js/quick-reply-old.js | 49 ------------------------------------------- post.php | 3 --- templates/index.html | 3 --- 4 files changed, 58 deletions(-) delete mode 100644 js/quick-reply-old.js diff --git a/inc/config.php b/inc/config.php index 05c4d0f5..bb9a2390 100644 --- a/inc/config.php +++ b/inc/config.php @@ -934,9 +934,6 @@ // Minify Javascript using http://code.google.com/p/minify/. $config['minify_js'] = false; - // Allows js/quick-reply-old.js to work. This could make your imageboard more vulnerable to flood attacks. - $config['quick_reply'] = false; - /* * ==================== * Video embedding diff --git a/js/quick-reply-old.js b/js/quick-reply-old.js deleted file mode 100644 index 662ba62a..00000000 --- a/js/quick-reply-old.js +++ /dev/null @@ -1,49 +0,0 @@ -/* - * quick-reply.js - * https://github.com/savetheinternet/Tinyboard/blob/master/js/quick-reply.js - * - * Released under the MIT license - * Copyright (c) 2012 Michael Save - * Copyright (c) 2013-2014 Marcin Ɓabanowski - * Copyright (c) 2013 lancee - * - * Usage: - * $config['quick_reply'] = true; - * $config['additional_javascript'][] = 'js/jquery.min.js'; - * $config['additional_javascript'][] = 'js/quick-reply.js'; - * - */ - -if (active_page == 'index') { -$(document).ready(function(){ - if($('div.banner').length != 0) - return; // not index - - txt_new_topic = $('form[name=post] input[type=submit]').val(); - txt_new_reply = txt_new_topic == _('Submit') ? txt_new_topic : new_reply_string; - - undo_quick_reply = function() { - $('div.banner').remove(); - $('form[name=post] input[type=submit]').val(txt_new_topic); - $('form[name=post] input[name=quick-reply]').remove(); - } - - $('div.post.op').each(function() { - var id = $(this).children('p.intro').children('a.post_no:eq(1)').text(); - $('['+_("Quick reply")+']').insertAfter($(this).children('p.intro').children('a:last')).click(function() { - $('div.banner').remove(); - $('') - .insertBefore('form[name=post]'); - $('form[name=post] input[type=submit]').val(txt_new_reply); - - $('').appendTo($('form[name=post]')); - - $('form[name=post] textarea').select(); - - window.scrollTo(0, 0); - - return false; - }); - }); -}); -} diff --git a/post.php b/post.php index 3420f7f4..907bd433 100644 --- a/post.php +++ b/post.php @@ -171,9 +171,6 @@ if (isset($_POST['delete'])) { if (isset($_POST['thread'])) { $post['op'] = false; $post['thread'] = round($_POST['thread']); - } elseif ($config['quick_reply'] && isset($_POST['quick-reply'])) { - $post['op'] = false; - $post['thread'] = round($_POST['quick-reply']); } else $post['op'] = true; diff --git a/templates/index.html b/templates/index.html index 530247f7..52328675 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,9 +4,6 @@