Bug: Pagination in the clipboard doesn't work

I found a bug in the file concrete/controllers/panel/add.php line 212
$curPage = (int)$this->request->request->get(“curPage”, 0);
should be
$curPage = (int)$this->request->get(“curPage”, 0);

The Pagination in the clipboard doesn’t work because of that

Please open a pull request with your change in it.