picky picky Jones adjusts some syntax
diff --git a/system/libraries/Input.php b/system/libraries/Input.php
index 50b4d82..8c08468 100644
--- a/system/libraries/Input.php
+++ b/system/libraries/Input.php
@@ -645,9 +645,8 @@
 		foreach ($words as $word)

 		{

 			$temp = '';

-			$wordlen = strlen($word);

 			

-			for ($i = 0; $i < $wordlen; $i++)

+			for ($i = 0, $wordlen = strlen($word); $i < $wordlen; $i++)

 			{

 				$temp .= substr($word, $i, 1)."\s*";

 			}