Browse Source

Explicitly define $dbType for default MySQL config

The `helper.php` checks for the `dbType` property on the 
`Config` class. Since nothing is defined it throws:

```
Fatal error: Access to undeclared static property: 
Config::$dbType in …/Quill/lib/helpers.php on line 3
```
pull/37/head
Prateek Saxena 8 years ago
parent
commit
758e51d81d
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      lib/config.template.php

+ 1
- 0
lib/config.template.php View File

@ -5,6 +5,7 @@ class Config {
public static $gaid = '';
// MySQL (default)
public static $dbType = 'mysql';
public static $dbHost = '127.0.0.1';
public static $dbName = 'quill';
public static $dbUsername = 'quill';

Loading…
Cancel
Save