From 0bb214a3d1c00bee32179058b08d7dc3d5fbb16c Mon Sep 17 00:00:00 2001 From: jove Date: Thu, 14 Jan 2016 02:52:14 +0000 Subject: [PATCH] Reports from the all board fix. Bit hacky but it fixes the 405 that comes from trying to use quick post controls from /popular/. --- js/quick-post-controls.js | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/js/quick-post-controls.js b/js/quick-post-controls.js index 10d74f98..62dfa1e0 100644 --- a/js/quick-post-controls.js +++ b/js/quick-post-controls.js @@ -39,10 +39,20 @@ $(document).ready(function(){ ' ' + '' + ''); - post_form + if($('form[name="post"]:first').size()){ + post_form .attr('action', $('form[name="post"]:first').attr('action')) - .append($('input[name=board]:first').clone()) - .find('input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"])').keypress(function(e) { + .append($('input[name=board]:first').clone()); + }else{ + var board=$(this).parent().parent().parent().attr("data-board"); + if(board){ + post_form.attr('action', '/post.php'); //doesn't respect $config["root"] but... + post_form.append(''); + }else{ + return;//better not to show a form if it isn't going to work + } + } + post_form.find('input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"])').keypress(function(e) { if(e.which == 13) { e.preventDefault(); if($(this).attr('name') == 'password') {