Add closing PHP tags to JSON config files
This commit is contained in:
parent
b302c77c74
commit
5ff23f02b8
4 changed files with 18 additions and 2 deletions
tests
|
@ -88,7 +88,7 @@ class ConfigJsonTest extends PHPUnit_Framework_TestCase
|
|||
} else {
|
||||
$expected = '{"credentials":{"login":"root"},"resource":{"datastore":"data\/datastore.php"},"redirector":{"url":"lala"},"plugins":{"WALLABAG_VERSION":"1"}}';
|
||||
}
|
||||
$expected = ConfigJson::getPhpHeaders() . $expected;
|
||||
$expected = ConfigJson::getPhpHeaders() . $expected . ConfigJson::getPhpSuffix();
|
||||
$this->assertEquals($expected, file_get_contents($dataFile));
|
||||
unlink($dataFile);
|
||||
}
|
||||
|
|
|
@ -2,3 +2,4 @@
|
|||
{
|
||||
bad: bad,
|
||||
}
|
||||
*/ ?>
|
|
@ -30,3 +30,5 @@
|
|||
"WALLABAG_VERSION": 1
|
||||
}
|
||||
}
|
||||
*/ ?>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue