Ignore:
Timestamp:
10/16/08 11:37:18 (4 years ago)
Author:
hverton
Message:

fixed session issue in the albums module
blog previous now breaks after a complete paragraph
fixed PHP notice in feeds.php when using PHP5
fixed MySQL error in viewforum.php/viewposts.php when using MySQL v5.x
fixed PHP warning in calls.httpdownload.php when using PHP5
added locale direction (ltr/rtl) to hoteditor
fixed issue with ocassional empty [URL] tags in hoteditor
fixed wrong returncode from sendemail() in sendmail_include.php
fixed issues in session management when behind loadbalanced proxies or ISP links (changing public IP address)
fixed typo in the album gallery edit template
fixed mismatched quotes in pm post causing hoteditor message retrieval to fail
fixed versioning issue in the menu, user info and welcome panel module installers
fixed PHP notice in setuser.php

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/user_info_panel/module_installer.php

    r1250 r1853  
    3636 
    3737// check for a minumum version of the ExiteCMS engine 
    38 if (str_replace(".", "", $settings['version']) < 700) { 
    39     $mod_errors .= sprintf($locale['mod001'], '7.00'); 
     38if (str_replace(".", "", $settings['version']) < 720) { 
     39    $mod_errors .= sprintf($locale['mod001'], '7.20'); 
    4040} 
    4141// check for a maximum version of the ExiteCMS engine 
    42 if (str_replace(".", "", $settings['version']) > 710) { 
    43     $mod_errors .= sprintf($locale['mod002'], '7.10'); 
     42if (str_replace(".", "", $settings['version']) > 720) { 
     43    $mod_errors .= sprintf($locale['mod002'], '7.20'); 
    4444} 
    4545// check for a specific revision number range that is supported 
Note: See TracChangeset for help on using the changeset viewer.