mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-30 03:09:22 +02:00
Minor fix.
This commit is contained in:
parent
7a5a4eb410
commit
0713d99a1b
@ -33,7 +33,7 @@
|
|||||||
- echo getClock($profile_data['lastlogin'], true); = from characterprofile,
|
- echo getClock($profile_data['lastlogin'], true); = from characterprofile,
|
||||||
explains when user was last logged in. */
|
explains when user was last logged in. */
|
||||||
function getClock($time = false, $format = false, $adjust = true) {
|
function getClock($time = false, $format = false, $adjust = true) {
|
||||||
if (!$time) $time = time();
|
if ($time === false) $time = time();
|
||||||
// Date string representation
|
// Date string representation
|
||||||
$date = "d F Y (H:i)"; // 15 July 2013 (13:50)
|
$date = "d F Y (H:i)"; // 15 July 2013 (13:50)
|
||||||
if ($adjust) $adjust = (1 * 3600); // Adjust to fit your timezone.
|
if ($adjust) $adjust = (1 * 3600); // Adjust to fit your timezone.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user