SF Patch #3391371 - Fix for schema link deactivation

This commit is contained in:
Roland Gruber
2011-10-06 11:57:06 +11:00
committed by Deon George
parent 7fc4f0c7e4
commit 6c8b623788
3 changed files with 5 additions and 2 deletions

View File

@@ -378,7 +378,7 @@ class PageRender extends Visitor {
$href = sprintf('cmd.php?cmd=schema&server_id=%s&view=attributes&viewvalue=%s',
$this->getServerID(),$attribute->getName());
if (! $_SESSION[APPCONFIG]->getValue('appearance','show_schema_link'))
if (! $_SESSION[APPCONFIG]->getValue('appearance','show_schema_link') || !$_SESSION[APPCONFIG]->isCommandAvailable('script','schema'))
printf('%s',_($attribute->getFriendlyName()));
elseif ($attribute->getLDAPtype())