From: SourceForge.net <no...@so...> - 2003-01-11 04:38:55
|
Bugs item #666085, was opened at 2003-01-10 20:40 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=666085&group_id=8956 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Leonard Chan (wotg) Assigned to: Nobody/Anonymous (nobody) Summary: Typo in copy.inc Initial Comment: Hi. Discovered a minor error in copy.inc. There should be an underscore, rather than a dash before ('Ended');. <?php while(list($sid,$name,$title,$status,$owner,$realm) = mysql_fetch_row($result)) { if($status & STATUS_DELETED) { $stat = _('Archived'); } elseif($status & STATUS_DONE) { $stat = -('Ended'); } elseif($status & STATUS_ACTIVE) { $stat = _('Active'); } else { $stat = _('Editing'); } Regards! LC ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=666085&group_id=8956 |