2008-11-11 Ramon Novoa <rnovoa@artica.es>

* godmode/agentes/agent_disk_conf_editor.php: Fixed check of
          enterprise_include () return value.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1236 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2008-11-11 10:10:27 +00:00
parent b97fb13b91
commit 93df135cec
2 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2008-11-11 Ramon Novoa <rnovoa@artica.es>
* godmode/agentes/agent_disk_conf_editor.php: Fixed check of
enterprise_include () return value.
2008-11-11 Jorge Gonzalez <jorgegonz@artica.es>
* include/languages/es.po, include/languages/index.pot,

View File

@ -1,12 +1,11 @@
<?PHP
if (enterprise_include ("godmode/agentes/agent_disk_conf_editor.php"))
return;
if (enterprise_include ("godmode/agentes/agent_disk_conf_editor.php") === ENTERPRISE_NOT_HOOK) {
echo "<h3>This feature is not included on OpenSource version. Please visit our website to learn more about the advanced features of <a href='http://pandorafms.com'>Pandora FMS Enterprise edition</a></h3>";
// Footer
echo "</div><div id='foot'>";
include ("general/footer.php");
echo "</div>";
}
?>