From 2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81 Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Mon, 2 Oct 2017 12:24:33 +0200 Subject: [PATCH] [ticket/15362] Fix colspan in notification options table PHPBB3-15362 --- phpBB/includes/ucp/ucp_notifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/ucp/ucp_notifications.php b/phpBB/includes/ucp/ucp_notifications.php index 835db44b90..029588bb23 100644 --- a/phpBB/includes/ucp/ucp_notifications.php +++ b/phpBB/includes/ucp/ucp_notifications.php @@ -205,7 +205,7 @@ class ucp_notifications } $template->assign_vars(array( - strtoupper($block) . '_COLS' => sizeof($notification_methods) + 2, + strtoupper($block) . '_COLS' => sizeof($notification_methods) + 1, )); }