1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-15 11:04:18 +02:00

Fix for forgotten password page layout in membersonly mode.

This commit is contained in:
Cameron
2016-05-01 10:34:34 -07:00
parent bec7071cdf
commit 8f5dd89284
4 changed files with 13 additions and 7 deletions

View File

@@ -3942,7 +3942,7 @@ class e_parser
*/
public function toDate($datestamp = null, $format='short')
{
if(!is_numeric($datestamp)){ return; }
if(!is_numeric($datestamp)){ return null; }
return '<span data-livestamp="'.$datestamp.'">'.e107::getDate()->convert($datestamp, $format).'</span>';
}