From 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Thu, 12 Jul 2012 11:21:01 +0000 Subject: standardize the use of unix eol; use svn properties to enforce native eol --- .../pages/ActiveControls/AutoComplete.php | 66 +++++++++++----------- 1 file changed, 33 insertions(+), 33 deletions(-) (limited to 'tests/FunctionalTests/features/protected/pages/ActiveControls/AutoComplete.php') diff --git a/tests/FunctionalTests/features/protected/pages/ActiveControls/AutoComplete.php b/tests/FunctionalTests/features/protected/pages/ActiveControls/AutoComplete.php index 3474234e..ac08e4ed 100644 --- a/tests/FunctionalTests/features/protected/pages/ActiveControls/AutoComplete.php +++ b/tests/FunctionalTests/features/protected/pages/ActiveControls/AutoComplete.php @@ -1,34 +1,34 @@ -setDataSource($this->matchCountries($param->getParameter())); - $sender->dataBind(); - $sender->render($param->getOutput()); - } - - protected function matchCountries($token) - { - $info = Prado::createComponent('System.I18N.core.CultureInfo', 'en'); - $list = array(); - $count = 0; - $token = strtolower($token); - foreach($info->getCountries() as $country) - { - if(strpos(strtolower($country), $token) === 0) - { - $list[] = $country; - $count++; - if($count > 10) break; - } - } - return $list; - } -} - +setDataSource($this->matchCountries($param->getParameter())); + $sender->dataBind(); + $sender->render($param->getOutput()); + } + + protected function matchCountries($token) + { + $info = Prado::createComponent('System.I18N.core.CultureInfo', 'en'); + $list = array(); + $count = 0; + $token = strtolower($token); + foreach($info->getCountries() as $country) + { + if(strpos(strtolower($country), $token) === 0) + { + $list[] = $country; + $count++; + if($count > 10) break; + } + } + return $list; + } +} + ?> \ No newline at end of file -- cgit v1.2.3