Skip to content

Commit

Permalink
Fix mythweb "NoTrans" problem by moving "inclues/defines.php" before …
Browse files Browse the repository at this point in the history
…"includes/databases.php" in "includes/init.php"

A big thank you to pmhahn@pmhahn.de for tracking down the problem and
figuring out the fix.
  • Loading branch information
jpoet committed Jul 13, 2013
1 parent f975296 commit 6e25134
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/init.php
Expand Up @@ -36,6 +36,9 @@
require_once 'includes/errors.php';
require_once 'includes/errordisplay.php';

// Define some common stuff
require_once 'includes/defines.php';

// Setup the database
require_once 'includes/database.php';

Expand All @@ -45,9 +48,6 @@
// Load the session handler routines
require_once 'includes/session.php';

// Define some common stuff
require_once 'includes/defines.php';

// Load the translation routines so the modules can translate their descriptions
require_once 'includes/translate.php';

Expand Down

0 comments on commit 6e25134

Please sign in to comment.