From: SourceForge.net <no...@so...> - 2007-11-27 13:43:16
|
Bugs item #1501802, was opened at 2006-06-06 20:18 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1501802&group_id=8956 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Admin Group: None >Status: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Error populating text boxes -w- dates on act. mgmt screens Initial Comment: On the manage accounts pages, when an account is selected -w- an expiry date, it is formatted incorrectly (day and month are being read from the wrong ordinal). Not sure if this is because of my environment (Win 2000 / PHP5 / Apache2) or what, but I've fixed the issue by replacing with the following in admdesigner.inc (line 193) and admrespondent.inc (line 167): REPLACE: $ex_year = substr($expiration,0,4); $ex_month = substr($expiration,4,2); $ex_day = substr($expiration,6,2); WITH: $ex_year = substr($expiration,0,4); $ex_month = substr($expiration,5,2); $ex_day = substr($expiration,8,2); ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 14:43 Message: Logged In: YES user_id=109671 Originator: NO correct, fixed in CVS ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1501802&group_id=8956 |