From ff0ca093430c1aeb7fbef0eeef954c849a2cd3de Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Fri, 16 Oct 2009 10:22:00 +1300 Subject: [PATCH] Convert some " to ' --- inc/page-header.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/inc/page-header.php b/inc/page-header.php index c0c044be..6c118fd8 100644 --- a/inc/page-header.php +++ b/inc/page-header.php @@ -1,7 +1,7 @@ page_title) ) { - $c->page_title = translate("DAViCal CalDAV Server"); + $c->page_title = translate('DAViCal CalDAV Server'); } function make_help_link($matches) @@ -11,19 +11,19 @@ function make_help_link($matches) // as usual: $matches[0] is the complete match // $matches[1] the match for the first subpattern // enclosed in '##...##' and so on - // Use like: $s = preg_replace_callback("/##([^#]+)##", "make_help_link", $s); + // Use like: $s = preg_replace_callback('/##([^#]+)##', 'make_help_link', $s); // $help_topic = preg_replace( '/^##(.+)##$/', '$1', $matches[1]); $help_topic = $matches[1]; $display_url = $help_topic; - if ( $GLOBALS['session']->AllowedTo("Admin") || $GLOBALS['session']->AllowedTo("Support") ) { + if ( $GLOBALS['session']->AllowedTo('Admin') || $GLOBALS['session']->AllowedTo('Support') ) { if ( strlen($display_url) > 30 ) { - $display_url = substr( $display_url, 0, 28 ) . "..." ; + $display_url = substr( $display_url, 0, 28 ) . '...' ; } } else { - $display_url = "help"; + $display_url = 'help'; } - return " base_url/help.php?h=$help_topic\" title=\"".translate("Show help on")." '$help_topic'\" target=\"_new\">[$display_url] "; + return ' ['.$display_url.'] '; } @@ -32,7 +32,7 @@ function send_page_header() { // echo ''; - header( "Content-type: text/html; charset=utf-8" ); + header( 'Content-type: text/html; charset="utf-8"' ); echo << @@ -43,12 +43,12 @@ function send_page_header() { EOHDR; foreach ( $c->stylesheets AS $stylesheet ) { - echo "\n"; + echo ''; } if ( isset($c->local_styles) ) { // Always load local styles last, so they can override prior ones... foreach ( $c->local_styles AS $stylesheet ) { - echo "\n"; + echo ''; } }