Merge pull request #515 from MrPetovan/task/3878-move-datetime-to-src

Replace datetime functions by Temporal methods
This commit is contained in:
Michael Vogel 2018-02-04 21:05:36 +01:00 committed by GitHub
commit 9a666c74fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Database\DBM;
use Friendica\Model\Profile;
use Friendica\Util\Temporal;
require_once 'boot.php';
require_once 'include/dba.php';
@ -149,7 +150,7 @@ function forumdirectory_content(&$a)
$details .= $rr['country-name'];
}
if (strlen($rr['dob']) && ($years = age($rr['dob'], $rr['timezone'], '')) != 0) {
if (strlen($rr['dob']) && ($years = Temporal::getAgeByTimezone($rr['dob'], $rr['timezone'], '')) != 0) {
$details .= '<br />' . L10n::t('Age: ') . $years;
}