mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-27 10:42:45 +03:00
parent
585ea121a4
commit
8d3a54527b
@ -323,7 +323,7 @@ coreHelpers.file_storage = function (context, options) {
|
||||
if (config().hasOwnProperty('fileStorage')) {
|
||||
return config().fileStorage.toString();
|
||||
}
|
||||
return "true";
|
||||
return 'true';
|
||||
};
|
||||
|
||||
// ### Apps helper
|
||||
@ -333,11 +333,11 @@ coreHelpers.file_storage = function (context, options) {
|
||||
//
|
||||
// Returns the config value for apps.
|
||||
coreHelpers.apps = function (context, options) {
|
||||
/*jslint unparam:true*/
|
||||
/*jshint unused:false*/
|
||||
if (config().hasOwnProperty('apps')) {
|
||||
return config().apps.toString();
|
||||
}
|
||||
return "false";
|
||||
return 'false';
|
||||
};
|
||||
|
||||
coreHelpers.ghost_script_tags = function () {
|
||||
|
Loading…
Reference in New Issue
Block a user