Commit 2a5d7c30 authored by kapil verma's avatar kapil verma

Fixed the use of 5.4 array syntax in one place

SO that things dont break for 5.3 peeps
parent f97fb3a4
......@@ -372,7 +372,7 @@ class Paginator {
{
$query = '?page='.$page.$this->appendage($this->appends);
return '<li'.HTML::attributes(compact($class)).'>'. HTML::link(URI::current().$query, $text, [], Request::secure()).'</li>';
return '<li'.HTML::attributes(compact($class)).'>'. HTML::link(URI::current().$query, $text, array(), Request::secure()).'</li>';
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment