From 1e741de84bbb822bd131f459c5cbe5651987b967 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 19 Dec 2010 02:14:37 -0500 Subject: [PATCH] Removing show alias, it was undocumented and untested. --- cake/libs/controller/components/paginator.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cake/libs/controller/components/paginator.php b/cake/libs/controller/components/paginator.php index 9755d47f2..847ea3ead 100644 --- a/cake/libs/controller/components/paginator.php +++ b/cake/libs/controller/components/paginator.php @@ -95,10 +95,6 @@ class PaginatorComponent extends Component { throw new MissingModelException($object); } - if (isset($options['show'])) { - $options['limit'] = $options['show']; - } - $options = $this->mergeOptions($object->alias, $scope, $whitelist); $options = $this->validateSort($object, $options);