~ubuntu-branches/ubuntu/trusty/fusionforge/trusty

« back to all changes in this revision

Viewing changes to www/admin/useredit.php

  • Committer: Bazaar Package Importer
  • Author(s): Roland Mas
  • Date: 2011-04-15 14:55:34 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20110415145534-mvn1nochufjmw177
Tags: 5.0.3-1
New upstream bugfix release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
                _('Active (A)'),
138
138
                _('Suspended (S)'),
139
139
                _('Deleted (D)'));
 
140
} else if ($u->getStatus() == 'P') {
 
141
        $status_letter = array('P','A','S');
 
142
        $status_text   = array(_('Pending (P)'),
 
143
                _('Active (A)'),
 
144
                _('Suspended (S)'));
140
145
} else {
141
 
        $status_letter = array('P','A','S');
142
 
        $status_text   = array(_('Pending (P)'),
143
 
                _('Active (A)'),
 
146
        $status_letter = array('A','S');
 
147
        $status_text   = array(_('Active (A)'),
144
148
                _('Suspended (S)'));
145
149
}
146
150
?>