Quote:
Originally Posted by youradhere4222
From what I understand, it's like military time. Correct me if I'm wrong.
Anyways, I made it this:
PHP Code:
if ($navbar_localtime < '24:00') { $vbphrase[ung_line] = $vbphrase[ung_morning]; $vbphrase[ung_punctuation] = $vbphrase[ung_period]; } elseif ($navbar_localtime < '12:00') { $vbphrase[ung_line] = $vbphrase[ung_afternoon]; $vbphrase[ung_punctuation] = $vbphrase[ung_period]; } elseif ($navbar_localtime < '18:00') { $vbphrase[ung_line] = $vbphrase[ung_evening]; $vbphrase[ung_punctuation] = $vbphrase[ung_period]; }
I did those changes, uploaded/overwrote my previous file, and like the previous time, I now have no name in the navbar after doing the template edits. It simply shows this:
Code:
You last visited: Yesterday at 11:46 PM Private Messages: Unread 0, Total 143.
|
Use this as you had the times wrong.
Quote:
if ($navbar_localtime < '12:00') {
$vbphrase[ung_line] = $vbphrase[ung_morning];
$vbphrase[ung_punctuation] = $vbphrase[ung_period];
} elseif ($navbar_localtime < '18:00') {
$vbphrase[ung_line] = $vbphrase[ung_afternoon];
$vbphrase[ung_punctuation] = $vbphrase[ung_period];
} elseif ($navbar_localtime < '24:00') {
$vbphrase[ung_line] = $vbphrase[ung_evening];
$vbphrase[ung_punctuation] = $vbphrase[ung_period];
}
|
Are you running Paul M's Unread Posts and Reputation hack? Is so, the first post has the fix for it at the bottom.