diff options
author | Patrick Brown <ptbrown@whoopdedo.org> | 2015-05-07 21:10:22 -0400 |
---|---|---|
committer | Patrick Brown <ptbrown@whoopdedo.org> | 2015-05-07 21:10:22 -0400 |
commit | d0d224a82eddf30aa6daead4796cb10dd0466767 (patch) | |
tree | d04692b0379451db55b7dc556dee7be7846d3cc8 /lib/scripts | |
parent | 699e3c4900f2d6cc860a3587a05798cd23b7944d (diff) | |
parent | cffb4528cea1b9e7e03dc724aaa9719dbd6e23c9 (diff) | |
download | rpg-d0d224a82eddf30aa6daead4796cb10dd0466767.tar.gz rpg-d0d224a82eddf30aa6daead4796cb10dd0466767.tar.bz2 |
Merge branch 'master' into ioreplaceinfile
Diffstat (limited to 'lib/scripts')
-rw-r--r-- | lib/scripts/linkwiz.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/scripts/linkwiz.js b/lib/scripts/linkwiz.js index 7c383ffe4..bc850226f 100644 --- a/lib/scripts/linkwiz.js +++ b/lib/scripts/linkwiz.js @@ -244,9 +244,10 @@ var dw_linkwiz = { so += dw_linkwiz.val.open.length; link = dw_linkwiz.val.open+link; } + link += '|'; + so += 1; if(stxt) { - link += '|'+stxt; - so += 1; + link += stxt; } if(dw_linkwiz.val.close) { link += dw_linkwiz.val.close; |