Skip to content

Commit

Permalink
make x_evalUTL more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Mar 14, 2015
1 parent 1c27a7e commit 5f887f7
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -283,6 +283,8 @@ function x_getLangData(lang) {

function x_evalURL(url)
{
if (url == null)
return null;
var trimmedURL = url.trim();
if (trimmedURL.indexOf("'")==0 || trimmedURL.indexOf("+") >=0)
{
Expand Down

0 comments on commit 5f887f7

Please sign in to comment.