aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2017-10-05 15:13:41 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2017-10-05 15:13:41 +0200
commite1ae3236b27953ab0ea9e4543ba2f96d5ce8d3ab (patch)
tree7f2c60d0379fd73d208617d78554d7c1ef90630c
parent5c33c852aef88fafdb7863626e9d09346b776dc6 (diff)
parent2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81 (diff)
downloadforums-e1ae3236b27953ab0ea9e4543ba2f96d5ce8d3ab.tar
forums-e1ae3236b27953ab0ea9e4543ba2f96d5ce8d3ab.tar.gz
forums-e1ae3236b27953ab0ea9e4543ba2f96d5ce8d3ab.tar.bz2
forums-e1ae3236b27953ab0ea9e4543ba2f96d5ce8d3ab.tar.xz
forums-e1ae3236b27953ab0ea9e4543ba2f96d5ce8d3ab.zip
Merge pull request #4981 from senky/ticket/15362
[ticket/15362] Fix colspan in notification options table
-rw-r--r--phpBB/includes/ucp/ucp_notifications.php2
1 files changed, 1 insertions, 1 deletions
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,
));
}