X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fcalendar%2Fday.php;h=55dd8c4d1c6cf1bd507afef57edf5eebfb59c057;hp=58cdcd1abe884222724b80abce24d88c8a1e99b4;hb=b1fbb25f561e6b151f7cf72744b03253f8d395fb;hpb=1c7143ad75c08368ea25ec57b3242d762cee31ca diff --git a/plugins/calendar/day.php b/plugins/calendar/day.php index 58cdcd1a..55dd8c4d 100644 --- a/plugins/calendar/day.php +++ b/plugins/calendar/day.php @@ -3,18 +3,18 @@ /** * Displays the day page (day view). * - * @copyright © 2002-2006 The SquirrelMail Project Team + * @copyright 2002-2012 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package plugins * @subpackage calendar */ -/** @ignore */ -define('SM_PATH','../../'); +/** + * Include the SquirrelMail initialization file. + */ +require('../../include/init.php'); -/* SquirrelMail required files. */ -include_once(SM_PATH . 'include/validate.php'); /* date_intl() */ include_once(SM_PATH . 'functions/date.php'); @@ -119,15 +119,15 @@ function display_events() { } else { $calbar=$calfoo['value']; if ($calbar['length']!=0){ - $elength = '-'.date('H:i',mktime($ehour,$eminute+$calbar['length'],0,1,1,0)); + $elength = '-'.date_intl(_("H:i"),mktime($ehour,$eminute+$calbar['length'],0,1,1,0)); } else { $elength=''; } echo html_tag( 'tr', '', '', $color[$eo] ) . - html_tag( 'td', $ehour . ':' . $eminute . $elength, 'left' ) . + html_tag( 'td', date_intl(_("H:i"),mktime($ehour,$eminute,0,1,1,0)) . $elength, 'left' ) . html_tag( 'td', '', 'left' ) . '['; - echo ($calbar['priority']==1) ? - "".htmlspecialchars($calbar['title']).'' : + echo ($calbar['priority']==1) ? + "".htmlspecialchars($calbar['title']).'' : htmlspecialchars($calbar['title']); echo']
'.nl2br(htmlspecialchars($calbar['message'])).'
' . html_tag( 'td', @@ -169,7 +169,7 @@ $calself=basename($PHP_SELF); $daily_events = array(); -displayPageHeader($color, 'None'); +displayPageHeader($color); calendar_header(); readcalendardata(); day_header(); @@ -177,4 +177,4 @@ initialize_events(); display_events(); ?> - \ No newline at end of file +