Changeset 3504

Show
Ignore:
Timestamp:
01/03/07 00:31:59 (5 years ago)
Author:
qldrob
Message:

Typo in regexp change earlier today.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/bin/retrieve_conf

    r3493 r3504  
    4141  $file = file($filename); 
    4242  foreach ($file as $line) { 
    43     if (preg_match("/^\s*([\w]+)\s*=\s*\"?([\w\/\:\.\%-\*]*)\"?\s*([;#].*)?/",$line,$matches)) { 
     43    if (preg_match("/^\s*([\w]+)\s*=\s*\"?([\w\/\:\.\%-*]\**)\"?\s*([;#].*)?/",$line,$matches)) { 
    4444      $conf[ $matches[1] ] = $matches[2]; 
    4545    }