In the footer wassup adds some lines
Wassup 1.7.1 timestamp: 2009-08-18 10:13:50 AM GMT +4
If timestamp is not above current time, this page is cached.
but, when my plugins cache some post, footer shows:
example:
<script type=text/javascript>add_openid_to_comment_form()</script><!--
<p> <span > Wassup 1.7.1 timestamp: 2009-08-18 10:13:50 AM GMT +4</span> </p>
<span > <small>If timestamp is not above current time, this page is cached.</small> -> We</span> <img src=http://www.ademails.com/cgi-bin/contador.cgi?ID=1059853853 border=0> <span > Visits and Counting</span> <img src=http://m1.webstats4u.com/n?id=ADnk1QUF2hBLni4ULVItFqNnXdWA border=0> </p>
<script type=text/javascript>
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type=text/javascript>
var pageTracker = _gat._getTracker("UA-684737-1");
pageTracker._trackPageview();
</script>
</div><!-- Closes footer -->
and this cometary don't closes, and --> it's ->
but in php code shows:
//Put a Wassup timestamp in page footer to check if page is cached
function cache_check() {
global $wassup_options, $version;
if ($wassup_options->wassup_active == "1") {
//Output a comment with a current timestamp to verify that page is not cached (i.e. visit is being recorded).
echo "<!-- \n<p> WassUp $version timestamp: ".date('Y-m-d h:i:sA T')." </p>\n";
echo "<small>".__("If above timestamp is not current time, this page is cached","wassup").".</small>\n";
echo "-->\n";
}
}
but, if I change last 2 lines:
echo "<small>".__("If above timestamp is not current time, this page is cached","wassup").".</small> --> \n";
with --> inside and the last line deleted, works fine
[...]</script><!--
<p> WassUp 1.7.1 timestamp: 2009-08-18 05:39:58PM GMT+4 </p>
<small>If above timestamp is not current time, this page is cached.</small> --> <span >[...]