Merge pull request #6913 from nfauchelle/patch-1

Correct a typo when css/js file doesn't exist
This commit is contained in:
Damian Mooyman 2017-05-15 09:15:36 +12:00 committed by GitHub
commit 3da1587289
1 changed files with 2 additions and 2 deletions

View File

@ -1439,7 +1439,7 @@ class Requirements_Backend
$this->css($path, $media);
} else {
throw new \InvalidArgumentException(
"The css file doesn't exists. Please check if the file $name.css exists in any context or search for "
"The css file doesn't exist. Please check if the file $name.css exists in any context or search for "
. "themedCSS references calling this file in your templates."
);
}
@ -1467,7 +1467,7 @@ class Requirements_Backend
$this->javascript($path, $opts);
} else {
throw new \InvalidArgumentException(
"The javascript file doesn't exists. Please check if the file $name.js exists in any "
"The javascript file doesn't exist. Please check if the file $name.js exists in any "
. "context or search for themedJavascript references calling this file in your templates."
);
}