Skip to content

Instantly share code, notes, and snippets.

@morshedalam
Last active December 30, 2015 08:29
Show Gist options
  • Select an option

  • Save morshedalam/7803217 to your computer and use it in GitHub Desktop.

Select an option

Save morshedalam/7803217 to your computer and use it in GitHub Desktop.
Remove empty field from CakePHP pagination
foreach($this->Paginator->options['url']['?'] $ key => $val){
if(empty($val))
unset($this->Paginator->options['url']['?'][key]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment