Ignore:
Timestamp:
12/19/12 16:44:18 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Correcoes para Best Practice: Short Open Tag e Best Practice: Always Quote Array Keys.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/library/PEAR/PEAR/Builder.php

    r5146 r7681  
    333333                if (substr($o['name'], 0, 5) == 'with-' && 
    334334                    ($r == 'yes' || $r == 'autodetect')) { 
    335                     $configure_command .= " --$o[name]"; 
     335                    $configure_command .= " --{$o['name']}"; 
    336336                } else { 
    337                     $configure_command .= " --$o[name]=".trim($r); 
     337                    $configure_command .= " --{$o['name']}=".trim($r); 
    338338                } 
    339339            } 
Note: See TracChangeset for help on using the changeset viewer.