From: simond Date: Sat, 16 Mar 2002 12:46:09 +0000 (+0000) Subject: Add org logo width/height to the admin plugin X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=99ac89836451ca72934023d18505582f7980414c;p=squirrelmail.git Add org logo width/height to the admin plugin git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2590 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/administrator/defines.php b/plugins/administrator/defines.php index 85d15db9..7f90041b 100644 --- a/plugins/administrator/defines.php +++ b/plugins/administrator/defines.php @@ -63,6 +63,14 @@ $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"), '$org_logo' => array( 'name' => _("Organization Logo"), 'type' => SMOPT_TYPE_STRING, 'size' => 40 ), + '$org_logo_width' => array( 'name' => _("Organization Logo Width"), + 'type' => SMOPT_TYPE_INTEGER, + 'size' => 5, + 'default' => 0), + '$org_logo_height' => array( 'name' => _("Organization Logo Height"), + 'type' => SMOPT_TYPE_INTEGER, + 'size' => 5, + 'default' => 0), '$org_title' => array( 'name' => _("Organization Title"), 'type' => SMOPT_TYPE_STRING, 'size' => 40 ),