Procházet zdrojové kódy

Formatter typo fix

master
Rocketsoup před 3 roky
rodič
revize
9cebf7e554
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      htdocs/index.php

+ 2
- 2
htdocs/index.php Zobrazit soubor

246
 			return $fmtTime->format($timestamp);
246
 			return $fmtTime->format($timestamp);
247
 		}
247
 		}
248
 		if ($now - $timestamp < 4 * DAY) {
248
 		if ($now - $timestamp < 4 * DAY) {
249
-			return $fmtDayOfWeek->format($timestamp) . ', ' . $time->format($timestamp);
249
+			return $fmtDayOfWeek->format($timestamp) . ', ' . $fmtTime->format($timestamp);
250
 		}
250
 		}
251
 		if ($now - $timestamp < 180 * DAY) {
251
 		if ($now - $timestamp < 180 * DAY) {
252
-			return $fmtMonthDay->format($timestamp) . ', ' . $time->format($timestamp);
252
+			return $fmtMonthDay->format($timestamp) . ', ' . $fmtTime->format($timestamp);
253
 		}
253
 		}
254
 		return $fmtLong->format($timestamp);
254
 		return $fmtLong->format($timestamp);
255
 	}
255
 	}

Načítá se…
Zrušit
Uložit