Hi guys, sorry for my first post asking for help but I know very little about php and just inherited a script. I was just checking the code (not that I know what to look for and noticed that there were 2 ?> at the bottom of one file. This doesn't look right to me.
Code is:
<?php
class helloworld extends phplistPlugin {
var $name = "Hello World";
var $coderoot = "plugins/defaultplugin/";
function helloworld() {
}
function adminmenu() {
return array(
"helloworld" => "Example plugin, dynamic page"
);
}
}
?>
?>
Should there be TWO ?> Please.