From: indiri69 Date: Sat, 10 Aug 2002 19:39:07 +0000 (+0000) Subject: Moved line to prevent enless loops X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0d3ff000dd1170c16f85cb52c30916d72e421d80;p=squirrelmail.git Moved line to prevent enless loops git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3286 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/url_parser.php b/functions/url_parser.php index 66ea2315..a686dbae 100644 --- a/functions/url_parser.php +++ b/functions/url_parser.php @@ -82,10 +82,10 @@ function parseUrl (&$body) { global $url_parser_poss_ends, $url_parser_url_tokens;; $start = 0; $blength = strlen($body); - $target_pos = $blength; while ($start != $blength) { $target_token = ''; + $target_pos = $blength; /* Find the first token to replace */ foreach ($url_parser_url_tokens as $the_token) {