Skip to content

Commit

Permalink
Added missing require lines for 14.12.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
driusan committed Mar 2, 2015
1 parent daedb0c commit c3c2e07
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tools/data_dictionary_builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

set_include_path(get_include_path().":../project/libraries:../php/libraries:");

require_once __DIR__ . "/../vendor/autoload.php";
require_once 'NDB_Client.class.inc';
$configFile = "../project/config.xml";
$client = new NDB_Client();
$client->makeCommandLine();
Expand Down
12 changes: 6 additions & 6 deletions tools/generic_includes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

set_include_path(get_include_path().":../project/libraries:../php/libraries:");

require_once __DIR__ . "/../vendor/autoload.php";
$configFile = "../project/config.xml";
$client = new NDB_Client();
$client->makeCommandLine();
$client->initialize($configFile);
$DB = Database::singleton();

// PEAR::Config

Expand All @@ -19,6 +13,12 @@
require_once "NDB_Config.class.inc";
require_once "NDB_BVL_Instrument.class.inc";
require_once "Candidate.class.inc";
require_once 'NDB_Client.class.inc';

$configFile = "../project/config.xml";
$client = new NDB_Client();
$client->makeCommandLine();
$client->initialize($configFile);
$DB = Database::singleton();

?>
2 changes: 1 addition & 1 deletion tools/quickform_parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

set_include_path(get_include_path().":../project/libraries:../php/libraries:");

require_once __DIR__ . "/../vendor/autoload.php";
require_once 'NDB_Client.class.inc';

$client = new NDB_Client();
$client->makeCommandLine();
Expand Down

0 comments on commit c3c2e07

Please sign in to comment.