phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] tts/admin.php, 1.2.2.1.4.3


From: nomail
Subject: [Phpgroupware-cvs] tts/admin.php, 1.2.2.1.4.3
Date: Thu, 12 Aug 2004 11:04:24 +0200

Update of /tts
Modified Files:
        Branch: Version-0_9_16-branch
          admin.php

date: 2004/08/12 09:04:24;  author: lpiepho;  state: Exp;  lines: +12 -11

Log Message:
bugfix in mailing, updated account-selectbox
=====================================================================
Index: tts/admin.php
diff -u tts/admin.php:1.2.2.1.4.2 tts/admin.php:1.2.2.1.4.3
--- tts/admin.php:1.2.2.1.4.2   Tue Jan 20 05:03:42 2004
+++ tts/admin.php       Thu Aug 12 09:04:24 2004
@@ -30,38 +30,39 @@
 
        $GLOBALS['phpgw']->config->read_repository();
 
-       if ($HTTP_POST_VARS['submit'])
+       if ($_POST['submit'])
        {
-               if ($HTTP_POST_VARS['usemailnotification'])
+               
+               if ($_POST['usemailnotification'])
                {
-                       
$GLOBALS['phpgw']->config->config_data['mailnotification'] = True;
+                       
$GLOBALS['phpgw']->config->config_data['mailnotification'] = true;
                }
                else
                {
-                       
unset($GLOBALS['phpgw']->config->config_data['mailnotification']);
+                       
$GLOBALS['phpgw']->config->config_data['mailnotification'] = false;
                }
 
-               if ($HTTP_POST_VARS['ownernotification'])
+               if ($_POST['ownernotification'])
                {
-                       
$GLOBALS['phpgw']->config->config_data['ownernotification'] = 
$HTTP_POST_VARS['ownernotification'];
+                       
$GLOBALS['phpgw']->config->config_data['ownernotification'] = 
$_POST['ownernotification'];
                }
                else
                {
                        
unset($GLOBALS['phpgw']->config->config_data['ownernotification']);
                }
 
-               if ($HTTP_POST_VARS['groupnotification'])
+               if ($_POST['groupnotification'])
                {
-                       
$GLOBALS['phpgw']->config->config_data['groupnotification'] = 
$HTTP_POST_VARS['groupnotification'];
+                       
$GLOBALS['phpgw']->config->config_data['groupnotification'] = 
$_POST['groupnotification'];
                }
                else
                {
                        
unset($GLOBALS['phpgw']->config->config_data['groupnotification']);
                }
 
-               if ($HTTP_POST_VARS['assignednotification'])
+               if ($_POST['assignednotification'])
                {
-                       
$GLOBALS['phpgw']->config->config_data['assignednotification'] = 
$HTTP_POST_VARS['assignednotification'];
+                       
$GLOBALS['phpgw']->config->config_data['assignednotification'] = 
$_POST['assignednotification'];
                }
                else
                {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]