Skip to content

Commit

Permalink
fixes Text::toList to allow passing array( 1=>"abc", 2=>"abc" ) and t…
Browse files Browse the repository at this point in the history
…he updated test case

Signed-off-by: Mark Story <mark@mark-story.com>
  • Loading branch information
dogmatic69 authored and markstory committed Nov 25, 2009
1 parent 4a08bd1 commit 398113f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
14 changes: 8 additions & 6 deletions cake/libs/view/helpers/text.php
Expand Up @@ -332,15 +332,17 @@ function excerpt($text, $phrase, $radius = 100, $ending = '...') {
* @access public
*/
function toList($list, $and = 'and') {
$r = '';
$c = count($list) - 1;
$return = '';
$count = count($list) - 1;
$counter = 0;
foreach ($list as $i => $item) {
$r .= $item;
if ($c > 0 && $i < $c) {
$r .= ($i < $c - 1 ? ', ' : " {$and} ");
$return .= $item;
if ($count > 0 && $counter < $count) {
$return .= ($counter < $count - 1 ? ', ' : " {$and} ");
}
$counter++;
}
return $r;
return $return;
}
}
?>
3 changes: 3 additions & 0 deletions cake/tests/cases/libs/view/helpers/text.test.php
Expand Up @@ -362,6 +362,9 @@ function testListGeneration() {

$result = $this->Text->toList(array('Dusty', 'Lucky', 'Ned'), 'y');
$this->assertEqual($result, 'Dusty, Lucky y Ned');

$result = $this->Text->toList(array( 1 => 'Dusty', 2 => 'Lucky', 3 => 'Ned'), 'y');
$this->assertEqual($result, 'Dusty, Lucky y Ned');
}
}
?>

0 comments on commit 398113f

Please sign in to comment.