diff options
author | Joas Schilling <coding@schilljs.com> | 2018-01-26 10:25:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 10:25:09 +0100 |
commit | a7ad7cb08e80ba64bbd7199517a974ff27025558 (patch) | |
tree | d3af83c565c71954fa33fcdc02497c415df1d23c /lib/private/legacy | |
parent | c2b1bd92d6f6e675f7ffab420cd61c5be701c4a6 (diff) | |
parent | e6efa755c9a8c6a6a4cc0faaffc23aea049d8298 (diff) | |
download | nextcloud-server-a7ad7cb08e80ba64bbd7199517a974ff27025558.tar.gz nextcloud-server-a7ad7cb08e80ba64bbd7199517a974ff27025558.zip |
Merge pull request #8053 from nextcloud/simplify-substr
Use short for of substr to not need strlen()
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php index e3365ca455f..c5279bff6b8 100644 --- a/lib/private/legacy/template.php +++ b/lib/private/legacy/template.php @@ -132,7 +132,7 @@ class OC_Template extends \OC\Template\Base { foreach(array_reverse($coreDependencies['vendor']) as $vendorLibrary) { //remove trailing ".js" as addVendorScript will append it OC_Util::addVendorScript( - substr($vendorLibrary, 0, strlen($vendorLibrary) - 3),null,true); + substr($vendorLibrary, 0, -3),null,true); } } else { throw new \Exception('Cannot read core/js/core.json'); |