Update of /cvsroot/squirrelmail/squirrelmail/functions
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17023/functions
Modified Files:
page_header.php
Log Message:
Correct me if I'm wrong (because oddly, this seemed to be working previously
for me), but ampersands do not need to be encoded in links like this.
Index: page_header.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/functions/page_header.php,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -w -r1.214 -r1.215
--- page_header.php 19 Sep 2006 14:06:32 -0000 1.214
+++ page_header.php 24 Sep 2006 18:04:29 -0000 1.215
@@ -64,10 +64,10 @@
$oTemplate->display('stylelink.tpl');
echo '<link rel="stylesheet" type="text/css" href="'. $base_uri
.'src/style.php'
.'?themeid='.$used_theme
- .'&templatedir='.$templatedir
- .(!empty($used_fontset) ? '&fontset='.$used_fontset : '')
- .(!empty($used_fontsize) ? '&fontsize='.$used_fontsize : '')
- .(!empty($text_direction) ? '&dir='.$text_direction : '')."\">\n";
+ .'&templatedir='.$templatedir
+ .(!empty($used_fontset) ? '&fontset='.$used_fontset : '')
+ .(!empty($used_fontsize) ? '&fontsize='.$used_fontsize : '')
+ .(!empty($text_direction) ? '&dir='.$text_direction : '')."\">\n";
// load custom style sheet (deprecated)
if ( ! empty($theme_css) ) {
echo "<link rel=\"stylesheet\" type=\"text/css\"
href=\"$theme_css\">\n";
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|