Changeset 4044

Show
Ignore:
Timestamp:
09/11/06 15:21:52 (2 years ago)
Author:
bergie
Message:

Support for <active>no</active> so we can honor Torben in the package credits

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/support/pear-package.php

    r3774 r4044  
    150150        } 
    151151         
     152        if (!array_key_exists('active', $person)) 
     153        { 
     154            $person['active'] = 'yes'; 
     155        } 
     156         
    152157        $package['maintainers'] .= " 
    153158    <{$person['role']}> 
     
    155160        <user>{$username}</user> 
    156161        <email>{$person['email']}</email> 
    157         <active>yes</active> 
     162        <active>{$person['active']}</active> 
    158163    </{$person['role']}> 
    159164        ";