Browse Source

Remove db_admin_path setting, now replaced by db_manager_enabled - refs #7794

Yannick Warnier 9 years ago
parent
commit
620e79631f
2 changed files with 0 additions and 10 deletions
  1. 0 6
      main/admin/index.php
  2. 0 4
      main/install/configuration.dist.php

+ 0 - 6
main/admin/index.php

@@ -339,12 +339,6 @@ if (api_is_platform_admin()) {
 
     $items = array();
     $items[] = array('url' => 'special_exports.php', 'label' => get_lang('SpecialExports'));
-    if (!empty($_configuration['db_admin_path'])) {
-        $items[] = array(
-            'url' => $_configuration['db_admin_path'],
-            'label' => get_lang('AdminDatabases') . ' (' . get_lang('DBManagementOnlyForServerAdmin') . ') '
-        );
-    }
     $items[] = array('url' => 'system_status.php', 'label' => get_lang('SystemStatus'));
     if (is_dir(api_get_path(SYS_TEST_PATH) . 'datafiller/')) {
         $items[] = array('url' => 'filler.php', 'label' => get_lang('DataFiller'));

+ 0 - 4
main/install/configuration.dist.php

@@ -50,10 +50,6 @@ $_configuration['root_sys'] = '{ROOT_SYS}';
 // example: chamilo (this means chamilo is installed in /var/www/chamilo/
 $_configuration['url_append'] = '{URL_APPEND_PATH}';
 
-// URL to your phpMyAdmin installation.
-// If not empty, a link will be available in the Platform Administration
-$_configuration['db_admin_path'] = '';
-
 /**
  * Login modules settings
  */