From: SourceForge.net <no...@so...> - 2003-01-11 14:32:51
|
Bugs item #666085, was opened at 2003-01-10 23:40 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=666085&group_id=8956 Category: None Group: None >Status: Closed >Resolution: Fixed 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 ---------------------------------------------------------------------- Comment By: James Flemer (jimmerman) Date: 2003-01-11 09:34 Message: Logged In: YES user_id=39444 Fixed in CVS. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=666085&group_id=8956 |