Permalink
Browse files

Fixing missing quotes in sample configuration

  • Loading branch information...
1 parent 15dbc9c commit 25b794df431d3bfc0f82c1e305160a0745bfb0e7 @waldoj waldoj committed Jan 4, 2013
Showing with 3 additions and 3 deletions.
  1. +3 −3 readme.md
View
@@ -70,8 +70,8 @@ Edit `config.php` to include a a single instance of the following for each datas
```php
$args = array(
- 'name' => database_name,
- 'username' => 'username',
+ 'name' => 'database_name',
+ 'username' => 'username',
'password' => 'password',
'server' => 'localhost',
'port' => 3306,
@@ -92,7 +92,7 @@ Here is a `config.php` file for a MySQL database named “inspections,” access
$args = array(
'name' => 'inspections',
- 'username' => 'website',
+ 'username' => 'website',
'password' => 's3cr3tpa55w0rd',
'server' => 'localhost',
'port' => 3306,

0 comments on commit 25b794d

Please sign in to comment.