diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-27 19:04:47 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-27 19:04:47 -0500 |
commit | dfb17f444ae560a0af1b242cfbf85008cd993816 (patch) | |
tree | 83cf733125697fc801541d11597f1d9a319ed881 | |
parent | d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c (diff) | |
download | forums-dfb17f444ae560a0af1b242cfbf85008cd993816.tar forums-dfb17f444ae560a0af1b242cfbf85008cd993816.tar.gz forums-dfb17f444ae560a0af1b242cfbf85008cd993816.tar.bz2 forums-dfb17f444ae560a0af1b242cfbf85008cd993816.tar.xz forums-dfb17f444ae560a0af1b242cfbf85008cd993816.zip |
[ticket/11103] Fix module setup, add explanation to template
PHPBB3-11103
-rw-r--r-- | phpBB/install/database_update.php | 4 | ||||
-rw-r--r-- | phpBB/language/en/ucp.php | 3 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 39544bf9ca..b3a1213bb1 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2465,8 +2465,8 @@ function change_database_data(&$no_updates, $version) 'auth' => '', 'cat' => 'UCP_PROFILE', ), - 'notification_options' => array( - 'base' => 'ucp_notification_options', + 'notifications' => array( + 'base' => 'ucp_notifications', 'class' => 'ucp', 'title' => 'UCP_NOTIFICATION_OPTIONS', 'auth' => '', diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php index 66662d2f63..843039635c 100644 --- a/phpBB/language/en/ucp.php +++ b/phpBB/language/en/ucp.php @@ -468,7 +468,8 @@ $lang = array_merge($lang, array( 'UCP_MSNM' => 'Windows Live Messenger', 'UCP_NO_ATTACHMENTS' => 'You have posted no files.', - 'UCP_NOTIFICATION_OPTIONS' => 'Notification options', + 'UCP_NOTIFICATION_OPTIONS' => 'Notification options', + 'UCP_NOTIFICATION_OPTIONS_EXPLAIN' => 'Here you can set your preferred notification methods for the board.', 'UCP_PREFS' => 'Board preferences', 'UCP_PREFS_PERSONAL' => 'Edit global settings', diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index c6665c16c0..531ffd3e6a 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -2,8 +2,12 @@ <form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}> +<h2>{L_UCP_NOTIFICATION_OPTIONS}</h2> <div class="panel"> <div class="inner"> + + <p>{L_UCP_NOTIFICATION_OPTIONS_EXPLAIN}</p> + <ul class="topiclist"> <li class="header"> <dl> |