0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

remove (possibly) unnecessary Config::read(all) calls ... see #144

This commit is contained in:
David Goodwin 2018-02-27 21:16:54 +00:00
parent f8d7844767
commit 2f7d3d9534

View File

@ -1,5 +1,10 @@
#!/usr/bin/php
<?php
if(file_exists(dirname(__FILE__) . '/../common.php')) {
require_once(dirname(__FILE__) . '/../common.php');
}
/**
* Command-line code generation utility to automate administrator tasks.
*
@ -191,7 +196,6 @@ class PostfixAdmin {
* Dispatches a CLI request
*/
public function dispatch() {
$CONF = Config::read('all');
check_db_version(); # ensure the database layout is up to date
@ -473,9 +477,6 @@ class PostfixAdmin {
define("POSTFIXADMIN_CLI", 1);
$dispatcher = new PostfixAdmin($argv);
$CONF = Config::read('all');
$dispatcher->dispatch();
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */