html-error in /docs/showdoc.php html-error in /docs/showdoc.php
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

html-error in /docs/showdoc.php

Started by Andi, October 29, 2005, 07:14:08 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Andi

Hi Team :)

there are 2 small errors in html-output from /docs/showdoc.php

Quoteline 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 4 column 1 - Warning: <link> inserting "type" attribute

I've change this line:
$string = "<html>\n<head>\n<title>Help</title>\n" . '<link rel="stylesheet" href="../themes/'.$add_stylesheet.'/style.css" />' . "\n</head>\n<body class=\"tableb\">\n<div style=\"padding: 5px;\">\n" . $string;
to this:
$string = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\t\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html>\n<head>\n<title>Help</title>\n" . '<link href="../themes/'.$add_stylesheet.'/style.css" rel="stylesheet" type="text/css" />' . "\n</head>\n<body class=\"tableb\">\n<div style=\"padding: 5px;\">\n" . $string;
hope, I could help you... :)

Joachim Müller