Remove a pointless str_replace()

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8824 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Chris Smith 2008-09-05 12:46:58 +00:00
parent 7a11fdbb64
commit 439cb0eafb

View file

@ -73,7 +73,7 @@ class session
continue; continue;
} }
$use_args[str_replace($find, $replace, $key)] = str_replace($find, $replace, $argument); $use_args[] = str_replace($find, $replace, $argument);
} }
unset($args); unset($args);