Browse Source

attempt to fix config file reference

pull/39/head
Aaron Parecki 7 years ago
parent
commit
f37cb05903
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      public/index.php

+ 1
- 1
public/index.php View File

@ -6,7 +6,7 @@ register_shutdown_function('shutdown');
// Load config file if present, otherwise use default // Load config file if present, otherwise use default
if(file_exists(dirname(__FILE__).'/../config.php')) { if(file_exists(dirname(__FILE__).'/../config.php')) {
require 'config.php';
require dirname(__FILE__).'/../config.php';
} else { } else {
class Config { class Config {
public static $cache = false; public static $cache = false;

Loading…
Cancel
Save