Minor changes to PaginatorHelper. $this->url() instead of parent::url()

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7165 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-06-11 02:47:50 +00:00
parent 44159ec303
commit 0ce344d852
2 changed files with 2 additions and 2 deletions

View file

@ -281,7 +281,7 @@ class PaginatorHelper extends AppHelper {
if ($asArray) {
return $url;
}
return parent::url($url);
return $this->url($url);
}
/**
* Protected method for generating prev/next links

View file

@ -227,7 +227,7 @@ class RssHelper extends XmlHelper {
unset($val['convertEntities']);
}
if (!is_null($val) && $escape) {
$val = h($val);
$val = h($val);
}
$elements[$key] = $this->elem($key, $attrib, $val);
}