diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2017-10-02 12:24:33 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2017-10-02 12:24:33 +0200 |
commit | 2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81 (patch) | |
tree | eaa93063fd792dad8ab24ad359209f46ad0869ce | |
parent | fc3d3a83db3357f3275c72ff7b3607666c6307a3 (diff) | |
download | forums-2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81.tar forums-2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81.tar.gz forums-2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81.tar.bz2 forums-2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81.tar.xz forums-2cdb27a0d12ac0f9bfd6a071998f4df7368ccd81.zip |
[ticket/15362] Fix colspan in notification options table
PHPBB3-15362
-rw-r--r-- | phpBB/includes/ucp/ucp_notifications.php | 2 |
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, )); } |