Changeset 1647

Show
Ignore:
Timestamp:
04/17/06 20:33:45 (7 years ago)
Author:
qldrob
Message:

Changed timeout to 5 mins while bugfixing is still happening.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/page.modules.php

    r1550 r1647  
    280280  $result = sql('SELECT * FROM module_xml','getRow',DB_FETCHMODE_ASSOC); 
    281281  // if the epoch in the db is more than 2 hours old, or the xml is less than 100 bytes, then regrab xml 
    282   if((time() - $result['time']) > 14400 || strlen($result['data']) < 100 ) { 
     282  // Changed to 5 minutes while not in release. Change back for released version. 
     283  if((time() - $result['time']) > 300 || strlen($result['data']) < 100 ) { 
    283284    $version = getversion(); 
    284285    $version = $version[0][0];