I noticed that the variable extCSS wasn't included in the functions_smarty.inc.php array. So after the line:
Code: Select all
'head_link_stylesheet' => serendipity_rewriteURL('serendipity.\
css'),Code: Select all
'head_ExtCSS' => $serendipity['extCSS'],Code: Select all
<link rel="stylesheet" type="text/css" href="{$head_ExtCSS}" />Code: Select all
<?php if (strlen($serendipity['extCSS']) > 0 && strtolower($serendipity['extCSS\
'])!='none') { ?>
<style type="text/css">@import "<?php echo $serendipity['extCSS']; ?>";</style>