SF Patch #3391371 - Fix for schema link deactivation
This commit is contained in:
committed by
Deon George
parent
7fc4f0c7e4
commit
6c8b623788
@@ -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())
|
||||
|
@@ -2371,6 +2371,9 @@ function deleteAttribute(attrName,friendlyName,i)
|
||||
protected function drawIconObjectClassAttribute($attribute,$val) {
|
||||
if (DEBUGTMP) printf('<font size=-2>%s</font><br />',__METHOD__);
|
||||
|
||||
if (! $_SESSION[APPCONFIG]->getValue('appearance','show_schema_link') || !$_SESSION[APPCONFIG]->isCommandAvailable('script','schema'))
|
||||
return;
|
||||
|
||||
if (strlen($val) > 0) {
|
||||
$href = sprintf('cmd.php?cmd=schema&server_id=%s&view=objectclasses&viewvalue=%s',
|
||||
$this->getServerID(),$val);
|
||||
|
Reference in New Issue
Block a user