/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/database.php

  • Committer: Suren A. Chilingaryan
  • Date: 2020-03-22 03:57:47 UTC
  • Revision ID: csa@suren.me-20200322035747-xgxfl2khh7ccd3we
Fix error in new cachng code fo ShowDatabases

Show diffs side-by-side

added added

removed removed

Lines of Context:
522
522
        default:
523
523
            throw new ADEIException(translate("The ShowDatabases for \"%s\" is not implemented", $this->driver));
524
524
    }
525
 
    
 
525
 
 
526
    $list = $list->fetchAll();
526
527
    $global_database_cache->Add("databases", $this->connection, $list);
527
528
    return $list;
528
529
 }