Quote:
Originally Posted by Pessimist
y2ksw
2 small fixes
HTML not valid (& -> & :
XML, line 351:
PHP Code:
$url = $bburl . '/rbs_banner.php?id=' . $rs['id'] . '&userid=' . $rbs_userid;
replace with&
PHP Code:
$url = $bburl . '/rbs_banner.php?id=' . $rs['id'] . '&userid=' . $rbs_userid;
Charset missed:
rbs_stats.php, add after line 90:
PHP Code:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Or better use as variable instead UTF-8 (value should be as language charset). Also, if language Russian and Charset set to windows-1251:
PHP Code:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
I hope you understand what I mean 
|
I've given up on all those fixes.
In some countries or browser settings the page validation fails. Also, the & and & problem is much more complex than it looks. & works on all server configurations, while & doesn't. I prefer to have it working all times.
Unless all standards are respected by all software developers, software bugs will persist. Hoping in such an event is utopic, but I still believe that it will happen one day