oops!
I inserted "/" to incorrect place in Master.php sample :$
> // Master.php
> <html>
> <head>
> <meta name="author" content="<?php echo $template['author']; ?>" />
> <meta name="robots" content="<?php if($template['allow_index']):
> ?>index<?php else: ?>noindex<?php endif;?>,follow" />
>
> <?php foreach($template['style_sheets'] as $style_sheet): ?>
> <link rel="stylesheet" href="<?php echo $style_sheet; ? />"
> type="text/css">
> <?php endforeach; ?>
> <base href="<?php echo $ro->getBaseHref();?>" />
> </head>
> <body>
> <?php echo $inner; ?>
>
> </body>
> </html>
> // EOF
should be
// Master.php
<html>
<head>
<meta name="author" content="<?php echo $template['author']; ?>" />
<meta name="robots" content="<?php if($template['allow_index']):
?>index<?php else: ?>noindex<?php endif;?>,follow" />
<?php foreach($template['style_sheets'] as $style_sheet): ?>
<link rel="stylesheet" href="<?php echo $style_sheet; ?>"
type="text/css" />
<?php endforeach; ?>
<base href="<?php echo $ro->getBaseHref();?>" />
</head>
<body>
<?php echo $inner; ?>
</body>
</html>
// EOF
good night,
MugeSo
_______________________________________________
users mailing list
[email protected]
http://lists.agavi.org/mailman/listinfo/users