Changeset 6216

Show
Ignore:
Timestamp:
07/30/08 13:48:37 (4 years ago)
Author:
p_lindheimer
Message:

Merged revisions 6215 via svnmerge from
http://svn.freepbx.org/freepbx/trunk

........

r6215 | ethans | 2008-07-30 11:47:02 -0700 (Wed, 30 Jul 2008) | 3 lines


Bug in php-5.2.5 with version_compare on unqouted string

........

Files:

Legend:

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

    • Property svnmerge-integrated changed from /freepbx/branches/2.3:1-4129,4131,4133-4134,4136-4995,5088,5135,5140,5194 /freepbx/trunk:1-5453,5736,5739,5748,5750,5758,5760,5765,5771,5773,5779,5782,5819,5827,5836,5838,5965,5974,6045,6056,6144 to /freepbx/branches/2.3:1-4129,4131,4133-4134,4136-4995,5088,5135,5140,5194 /freepbx/trunk:1-5453,5736,5739,5748,5750,5758,5760,5765,5771,5773,5779,5782,5819,5827,5836,5838,5965,5974,6045,6056,6144,6215
  • freepbx/branches/2.4/libfreepbx.install.php

    r4993 r6216  
    180180  debug("mkdir ".$directory.", ".$mode); 
    181181  $ntmp = sscanf($mode,"%o",$modenum); //assumes all inputs are octal 
    182   if (version_compare(phpversion(), 5.0) < 0) { 
     182  if (version_compare(phpversion(), '5.0') < 0) { 
    183183    // php <5 can't recursively create directories 
    184184    if ($recursive) {