From: fidian Date: Fri, 27 Jul 2001 21:07:04 +0000 (+0000) Subject: Warning removal X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=af354e93915b368eb721daca579cd48f36b25040;ds=sidebyside Warning removal git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1454 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/date.php b/functions/date.php index 59a10dca..a22fea7e 100644 --- a/functions/date.php +++ b/functions/date.php @@ -123,6 +123,11 @@ // the 3 times it was getting called by calling the functions // getHour, getMinute, and getSecond. // + if (! isset($dateParts[1])) $dateParts[1] = ''; + if (! isset($dateParts[2])) $dateParts[2] = ''; + if (! isset($dateParts[3])) $dateParts[3] = ''; + if (! isset($dateParts[4])) $dateParts[4] = ''; + if (! isset($dateParts[5])) $dateParts[5] = ''; if (intval(trim($dateParts[0])) > 0) { $string = $dateParts[0] . ' ' . $dateParts[1] . ' ' . $dateParts[2] . ' ' . $dateParts[3];