Difference between revisions of "Wrong date format in profile plugin"

From Joomla! Documentation

m (→‎See also: clean up categories with <noinclude> tags)
Line 13: Line 13:
 
* [http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=27918 issue in the tracker] (bug tracker #27918)
 
* [http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=27918 issue in the tracker] (bug tracker #27918)
  
[[Category:Version 2.5 FAQ]]
+
<noinclude>[[Category:Version 2.5 FAQ]]
 
[[Category:Version 2.5.1 FAQ]]
 
[[Category:Version 2.5.1 FAQ]]
 
[[Category:Version 2.5.2 FAQ]]
 
[[Category:Version 2.5.2 FAQ]]
[[Category:Version 2.5.3 FAQ]]
+
[[Category:Version 2.5.3 FAQ]]</noinclude>

Revision as of 17:10, 1 September 2012

If you see % (ampersand) in your date field, which is part of the profile plugin (date of birth field), you can fix it easily with editing the file plugins/user/profile/profile.php.

Line #227 currently (Joomla! 2.5.1) is:

$data['profile']['dob'] = $date->format('%Y-%m-%d');

and should be changed to:

$data['profile']['dob'] = $date->format('Y-m-d');

See also[edit]