Changeset 11468 for freepbx

Show
Ignore:
Timestamp:
02/19/11 10:59:25 (2 years ago)
Author:
p_lindheimer
Message:

Merged revisions 11467 via svnmerge from
http://www.freepbx.org/v2/svn/freepbx/branches/2.6

........

r11464 | p_lindheimer | 2011-02-19 07:26:31 -0800 (Sat, 19 Feb 2011) | 1 line


adds PHP version information when update checks are sent so we can make decisions on min version number requirements

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.5

    • Property svnmerge-integrated changed from /freepbx/branches/2.4:1-5944 /freepbx/branches/2.6:1-7913,9512,10465 to /freepbx/branches/2.4:1-5944 /freepbx/branches/2.6:1-7913,9512,10465,11467
  • freepbx/branches/2.5/amp_conf/htdocs/admin/functions.inc.php

    r8119 r11468  
    34483448    $options .="&astver=".urlencode($engver['raw']); 
    34493449  } 
     3450  $options .= "&phpver=".urlencode(phpversion()); 
    34503451 
    34513452  $fn = "http://mirror.freepbx.org/version-".getversion().".html".$options; 
  • freepbx/branches/2.5/amp_conf/htdocs/admin/page.modules.php

    r10466 r11468  
    423423    echo "<a href='config.php?display=modules&amp;type=tool'>"._("Manage local modules")."</a>\n"; 
    424424    if (!EXTERNAL_PACKAGE_MANAGEMENT) { 
    425       echo " | <a class='info' href='config.php?display=modules&amp;type=tool&amp;online=1'>"._("Check for updates online")."<span>"._("Checking for updates will transmit your FreePBX and Asterisk version numbers along with a unique but random identifier. This is used to provide proper update information and track version usage to focus development and maintenance efforts. No private information is transmitted.")."</span></a>\n"; 
     425      echo " | <a class='info' href='config.php?display=modules&amp;type=tool&amp;online=1'>"._("Check for updates online")."<span>"._("Checking for updates will transmit your FreePBX, Asterisk and PHP version numbers along with a unique but random identifier. This is used to provide proper update information and track version usage to focus development and maintenance efforts. No private information is transmitted.")."</span></a>\n"; 
    426426    } 
    427427         
     
    478478    } else { 
    479479      if (!EXTERNAL_PACKAGE_MANAGEMENT) { 
    480         echo "<a class='info' href='config.php?display=modules&amp;type=tool&amp;online=1'>"._("Check for updates online")."<span>"._("Checking for updates will transmit your FreePBX and Asterisk version numbers along with a unique but random identifier. This is used to provide proper update information and track version usage to focus development and maintenance efforts. No private information is transmitted.")."</span></a>\n"; 
     480        echo "<a class='info' href='config.php?display=modules&amp;type=tool&amp;online=1'>"._("Check for updates online")."<span>"._("Checking for updates will transmit your FreePBX, Asterisk and PHP version numbers along with a unique but random identifier. This is used to provide proper update information and track version usage to focus development and maintenance efforts. No private information is transmitted.")."</span></a>\n"; 
    481481      } 
    482482      echo " | <a href='config.php?display=modules&amp;type=tool&amp;extdisplay=upload'>"._("Upload module")."</a><br />\n";