From: <vb...@us...> - 2002-10-01 12:51:45
|
Update of /cvsroot/webnotes/webnotes/sample In directory usw-pr-cvs1:/tmp/cvs-serv22647/sample Modified Files: sample_header.php Log Message: - Fixed a problem in including the sample.css - Fixed a problem in referring to the new images from the sample manual. Index: sample_header.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/sample_header.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- sample_header.php 1 Oct 2002 12:30:09 -0000 1.2 +++ sample_header.php 1 Oct 2002 12:51:42 -0000 1.3 @@ -4,7 +4,9 @@ <?php require_once("../core/api.php"); # replace with actual path pwn_head(); - print_css_link( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'sample.css' ); + echo '<style type="text/css">'; + print_css( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'sample.css' ); + echo '</style>'; ?> </head> <body> |