SoarinFerret / dokuwiki-plugin-pagebuttons

https://www.dokuwiki.org/plugin:pagebuttons
GNU General Public License v2.0
0 stars 8 forks source link

Character set compatibility error: when "new page" and "new folder" #16

Open TechBoxGames opened 1 year ago

TechBoxGames commented 1 year ago

The error code is in lines 77, 78, 79, 133, 134 and 135 of the script. js file

The source code is: var pre_url = useSlash ? window.location.href.substring(0, window.location.href.indexOf(JSINFO['id'].replace(/:/g, '/'))) + JSINFO['namespace'].replace(/:/g, '/') : window.location.href.substring(0, window.location.href.indexOf(JSINFO['id'])) + JSINFO['namespace'];

The revised code is: var pre_url = useSlash ? window.location.href.substring(0, window.location.href.indexOf(encodeURI(JSINFO['id']).replace(/:/g, '/'))) + JSINFO['namespace'].replace(/:/g, '/') : window.location.href.substring(0, window.location.href.indexOf(encodeURI(JSINFO['id']))) + JSINFO['namespace'];

Note: Change JSINFO['id'] to encodeURI(JSINFO['id'])