0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/variables.inc.php
Christian Boltz f8cd54a468 variables.inc.php:
- cleanup: move some vars to password.php and users/password.php
- drop $pPassword_admin_text - was always empty

password.php, users/password.php:
- init $pPassword_password_text and $pPassword_password_current_text
  (previously in variables.inc.php)

templates/password.tpl, templates/users_password.tpl:
- drop $pPassword_admin_text - was always empty

These changes should also fix some undefined variable warnings reported 
by makomi on IRC.


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1004 a1433add-5e2c-0410-b055-b7f2511e0802
2011-03-14 20:21:13 +00:00

97 lines
2.1 KiB
PHP

<?php
/**
* Postfix Admin
*
* LICENSE
* This source file is subject to the GPL license that is bundled with
* this package in the file LICENSE.TXT.
*
* Further details on the project are available at :
* http://www.postfixadmin.com or http://postfixadmin.sf.net
*
* @version $Id$
* @license GNU GPL v2 or later.
*
* File: variables.inc.php
* Contains varoius pre-defined variables.
*
* XXX Probably a hack to save having to declare variables before using them in pages.
*/
$error = "";
$escaped_string = "";
$quota = "";
$vacation = "";
$fActive = "";
$fAddress = "";
$fAliases = "";
$fBackupmx = "";
$fDefaultaliases = "";
$fDelete = "";
$fDescription = "";
$fDomain = "";
$fDomains = "";
$fDomains[0] = "";
$fFrom = "";
$fGoto = "";
$fHeaders = "";
$fMail = "";
$fMailboxes = "";
$fMaxquota = "";
$fName = "";
$fPassword = "";
$fPassword2 = "";
$fQuota = "";
$fSearch = "";
$fTable = "";
$fTransport = "";
$fTo = "";
$fUsername = "";
$fVacation = "";
$fWhere = "";
$tActive = "";
$tActive = "";
$tAddress = "";
$tAlias = "";
$tAliases = "";
$tBody = "";
$tDefaultaliases = "";
$tDescription = "";
$tDisplay_back = "";
$tDisplay_back_show = "";
$tDisplay_up_show = "";
$tDisplay_next = "";
$tDisplay_next_show = "";
$tDomain = "";
$tDomains = "";
$tFrom = "";
$tGoto = "";
$tLog = "";
$tMailbox = "";
$tMailboxes = "";
$tMaxquota = "";
$tMessage = "&nbsp;";
$tName = "";
$tQuota = "";
$tSubject = "";
$tUsername = "";
$tTransport = "";
$pAdminCreate_admin_password_text = "&nbsp;";
$pAdminCreate_admin_username_text = "&nbsp;";
$pAdminCreate_domain_defaultaliases_text = "&nbsp;";
$pAdminCreate_domain_domain_text = "&nbsp;";
$pAdminEdit_admin_password_text = "&nbsp;";
$pCreate_alias_address_text = "&nbsp;";
$pCreate_alias_goto_text = "&nbsp;";
$pCreate_mailbox_name_text = "&nbsp;";
$pCreate_mailbox_password_text = "&nbsp;";
$pCreate_mailbox_quota_text = "&nbsp;";
$pCreate_mailbox_username_text = "&nbsp;";
$pEdit_mailbox_password_text = "&nbsp;";
$pEdit_mailbox_quota_text = "&nbsp;";
$pEdit_mailbox_username_text = "&nbsp;";
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
?>