Changeset 771


Ignore:
Timestamp:
04/28/09 15:53:16 (15 years ago)
Author:
niltonneto
Message:

Correção para remover "warnings" na criação de eventos na agenda.

Location:
trunk/phpgwapi/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/inc/class.jscalendar.inc.php

    r2 r771  
    3131                        $this->jscalendar_url = $GLOBALS['phpgw_info']['server']['webserver_url'].'/phpgwapi/js/'.$path; 
    3232                        $this->dateformat = $GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']; 
    33  
    34                         if ($do_header && !strstr($GLOBALS['phpgw_info']['flags']['java_script'],'jscalendar')) 
     33                         
     34                        if ($do_header && !strpos($GLOBALS['phpgw_info']['flags']['java_script'],'jscalendar')) 
    3535                        { 
    3636                                $GLOBALS['phpgw_info']['flags']['java_script'] .= 
  • trunk/phpgwapi/inc/class.preferences.inc.php

    r54 r771  
    11161116                        // is it possible to use Trash and Sent folders - i.e. using IMAP server 
    11171117                        // if not - force settings to false 
    1118                         if (stristr($prefs['email']['mail_server_type'], 'imap') == False) 
     1118                        if (strpos($prefs['email']['mail_server_type'], 'imap') == False) 
    11191119                        { 
    11201120                                if (isset($prefs['email']['use_trash_folder'])) 
Note: See TracChangeset for help on using the changeset viewer.