diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-04-21 07:38:30 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-04-21 07:38:30 -0700 |
commit | d0055bad24153e1dc696df2b8825dba4c523b434 (patch) | |
tree | b557f1f336a78be78ae18ccf25580bc7ea6fe247 /lib | |
parent | 989313458fda1c8eee8a33ffacc44172854d25ab (diff) | |
parent | 758e51d81d5edd769b279783aba2d7728eb0c76f (diff) |
Merge pull request #37 from prtksxna/undeclared-static-property
Explicitly define $dbType for default MySQL config
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config.template.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/config.template.php b/lib/config.template.php index ee822bb..87ce75b 100644 --- a/lib/config.template.php +++ b/lib/config.template.php @@ -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'; |