Changeset 1273
- Timestamp:
- 07/18/08 00:45:08
(5 months ago)
- Author:
- rats
- Message:
* Fixed #1416: Missing menu when a client try to ad new email: client/mail_add.php
* Fixed #1417: Template error and missing menu when a client try to enable autoresponder: client/mail_autoresponder_enable.php
* Fixed #1418: Template error and missing menu when a client try to enable autoresponder: client/mail_autoresponder_edit.php
* Fixed #1419: Template error and missing menu when a client try to create catch all: client/mail_catchall_add.php
* Fixed #1420: Missing menu when a client try to edit email: client/mail_edit.php
* Fixed #1421: Client can`t change sql password: client/sql_change_password.php (template error)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1272 |
r1273 |
|
| 1 | 1 | ispCP ω 1.0.0 Changelog |
|---|
| 2 | 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| | 3 | |
|---|
| | 4 | 2008-07-18 Benedikt Heintel |
|---|
| | 5 | - GUI: |
|---|
| | 6 | * Fixed #1416: Missing menu when a client try to ad new email: client/mail_add.php |
|---|
| | 7 | * Fixed #1417: Template error and missing menu when a client try to enable autoresponder: client/mail_autoresponder_enable.php |
|---|
| | 8 | * Fixed #1418: Template error and missing menu when a client try to enable autoresponder: client/mail_autoresponder_edit.php |
|---|
| | 9 | * Fixed #1419: Template error and missing menu when a client try to create catch all: client/mail_catchall_add.php |
|---|
| | 10 | * Fixed #1420: Missing menu when a client try to edit email: client/mail_edit.php |
|---|
| | 11 | * Fixed #1421: Client can`t change sql password: client/sql_change_password.php (template error) |
|---|
| 3 | 12 | |
|---|
| 4 | 13 | 2008-07-16 Benedikt Heintel |
|---|
| r1272 |
r1273 |
|
| 524 | 524 | // static page messages. |
|---|
| 525 | 525 | |
|---|
| 526 | | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_mail_accounts.tpl'); |
|---|
| 527 | | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_mail_accounts.tpl'); |
|---|
| | 526 | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_email_accounts.tpl'); |
|---|
| | 527 | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_email_accounts.tpl'); |
|---|
| 528 | 528 | |
|---|
| 529 | 529 | gen_logged_from($tpl); |
|---|
| r1265 |
r1273 |
|
| 24 | 24 | |
|---|
| 25 | 25 | $tpl = new pTemplate(); |
|---|
| 26 | | $tpl->define_dynamic('page', Config::get('CLIENT_TEMPLATE_PATH') . '/mail_autoresponder_enable.php'); |
|---|
| | 26 | $tpl->define_dynamic('page', Config::get('CLIENT_TEMPLATE_PATH') . '/mail_autoresponder_enable.tpl'); |
|---|
| 27 | 27 | $tpl->define_dynamic('page_message', 'page'); |
|---|
| 28 | 28 | $tpl->define_dynamic('logged_from', 'page'); |
|---|
| … | … | |
| 156 | 156 | // static page messages. |
|---|
| 157 | 157 | |
|---|
| 158 | | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_mail_accounts.tpl'); |
|---|
| 159 | | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_mail_accounts.tpl'); |
|---|
| | 158 | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_email_accounts.tpl'); |
|---|
| | 159 | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_email_accounts.tpl'); |
|---|
| 160 | 160 | |
|---|
| 161 | 161 | gen_logged_from($tpl); |
|---|
| r1265 |
r1273 |
|
| 24 | 24 | |
|---|
| 25 | 25 | $tpl = new pTemplate(); |
|---|
| 26 | | $tpl->define_dynamic('page', Config::get('CLIENT_TEMPLATE_PATH') . '/mail_autoresponder_enable.php'); |
|---|
| | 26 | $tpl->define_dynamic('page', Config::get('CLIENT_TEMPLATE_PATH') . '/mail_autoresponder_enable.tpl'); |
|---|
| 27 | 27 | $tpl->define_dynamic('page_message', 'page'); |
|---|
| 28 | 28 | $tpl->define_dynamic('logged_from', 'page'); |
|---|
| … | … | |
| 157 | 157 | // static page messages. |
|---|
| 158 | 158 | |
|---|
| 159 | | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_mail_accounts.tpl'); |
|---|
| 160 | | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_mail_accounts.tpl'); |
|---|
| | 159 | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_email_accounts.tpl'); |
|---|
| | 160 | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_email_accounts.tpl'); |
|---|
| 161 | 161 | |
|---|
| 162 | 162 | gen_logged_from($tpl); |
|---|
| r1265 |
r1273 |
|
| 24 | 24 | |
|---|
| 25 | 25 | $tpl = new pTemplate(); |
|---|
| 26 | | $tpl->define_dynamic('page', Config::get('CLIENT_TEMPLATE_PATH') . '/create_mail_catchall.tpl'); |
|---|
| | 26 | $tpl->define_dynamic('page', Config::get('CLIENT_TEMPLATE_PATH') . '/mail_catchall_add.tpl'); |
|---|
| 27 | 27 | $tpl->define_dynamic('page_message', 'page'); |
|---|
| 28 | 28 | $tpl->define_dynamic('logged_from', 'page'); |
|---|
| … | … | |
| 382 | 382 | // static page messages. |
|---|
| 383 | 383 | |
|---|
| 384 | | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_mail_accounts.tpl'); |
|---|
| 385 | | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_mail_accounts.tpl'); |
|---|
| | 384 | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_email_accounts.tpl'); |
|---|
| | 385 | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_email_accounts.tpl'); |
|---|
| 386 | 386 | |
|---|
| 387 | 387 | gen_logged_from($tpl); |
|---|
| r1272 |
r1273 |
|
| 310 | 310 | // static page messages. |
|---|
| 311 | 311 | |
|---|
| 312 | | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_mail_accounts.tpl'); |
|---|
| 313 | | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_mail_accounts.tpl'); |
|---|
| | 312 | gen_client_mainmenu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/main_menu_email_accounts.tpl'); |
|---|
| | 313 | gen_client_menu($tpl, Config::get('CLIENT_TEMPLATE_PATH') . '/menu_email_accounts.tpl'); |
|---|
| 314 | 314 | |
|---|
| 315 | 315 | gen_logged_from($tpl); |
|---|
| r1263 |
r1273 |
|
| 52 | 52 | <tr> |
|---|
| 53 | 53 | <td width="40"> </td> |
|---|
| 54 | | <td valign="top"><form name="sql_change_password_frm" method="post" action="sql_password_change.php"> |
|---|
| | 54 | <td valign="top"><form name="sql_change_password_frm" method="post" action="sql_change_password.php"> |
|---|
| 55 | 55 | <table width="100%" cellpadding="5" cellspacing="5"> |
|---|
| 56 | 56 | <!-- BDP: page_message --> |
|---|
|