spelling: extension

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-03-21 23:17:48 -04:00
parent acb85feafb
commit d6eb08dd89
2 changed files with 2 additions and 2 deletions

View File

@ -1103,7 +1103,7 @@ Version 2019.03 (2019-03-22)
forumdirectory:
Fixed a theming issue with frio [rabuzarus]
js_upload:
Fixed a missing extionsion index [nupplaphil]
Fixed a missing extension index [nupplaphil]
mailstream:
Fixed a curl issue [MrPetovan]
piwik:

View File

@ -211,7 +211,7 @@
/**
* Get file extension lowercase
* @param {String} file name
* @return file extenstion
* @return file extension
*/
function getExt(file){
return (-1 !== file.indexOf('.')) ? file.replace(/.*[.]/, '') : '';