diff --git a/out/out.ManageNotify.php b/out/out.ManageNotify.php index dfc4935e2..8ab2f115a 100644 --- a/out/out.ManageNotify.php +++ b/out/out.ManageNotify.php @@ -36,6 +36,9 @@ if ($user->isGuest()) { } if($view) { + $view->setParam('showtree', showtree()); + $view->setParam('enableRecursiveCount', $settings->_enableRecursiveCount); + $view->setParam('maxRecursiveCount', $settings->_maxRecursiveCount); $view->setParam('cachedir', $settings->_cacheDir); $view->setParam('previewWidthList', $settings->_previewWidthList); $view->setParam('previewConverters', isset($settings->_converters['preview']) ? $settings->_converters['preview'] : array()); diff --git a/views/bootstrap/class.AttributeMgr.php b/views/bootstrap/class.AttributeMgr.php index 391bfdb35..03cf6a95d 100644 --- a/views/bootstrap/class.AttributeMgr.php +++ b/views/bootstrap/class.AttributeMgr.php @@ -189,7 +189,7 @@ $(document).ready( function() { ($attrdef ? htmlspecialchars($attrdef->getName()) : '') ) ); -?> -
- -
- -
-
- - -
- -
- -
-
-formField( + getMLText("attrdef_type"), + array( + 'element'=>'select', + 'name'=>'type', + 'options'=>$options + ) + ); $this->formField( getMLText("attrdef_multiple"), array( diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index 77408bf29..aeaceee7c 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -1135,11 +1135,15 @@ background-image: linear-gradient(to bottom, #882222, #111111);; echo ">"; if(isset($value['options']) && is_array($value['options'])) { foreach($value['options'] as $val) { + if(is_string($val)) { + echo ''; + } elseif(is_array($val)) { echo ''; + } } } echo ''; diff --git a/views/bootstrap/class.UsrView.php b/views/bootstrap/class.UsrView.php index 09c9ea48c..b566573ae 100644 --- a/views/bootstrap/class.UsrView.php +++ b/views/bootstrap/class.UsrView.php @@ -44,7 +44,6 @@ class SeedDMS_View_UsrView extends SeedDMS_Bootstrap_Style { $this->pageNavigation(getMLText("my_account"), "my_account"); $this->contentHeading(getMLText("users")); - $this->contentContainerStart(); echo "\n"; echo "\n\n"; @@ -76,7 +75,6 @@ class SeedDMS_View_UsrView extends SeedDMS_Bootstrap_Style { echo "
\n"; - $this->contentContainerEnd(); $this->contentEnd(); $this->htmlEndPage(); } /* }}} */