Fixed the use of 5.4 array syntax in one place

SO that things dont break for 5.3 peeps
This commit is contained in:
kapil verma 2012-09-02 12:27:06 +05:30
parent f97fb3a457
commit 2a5d7c3080
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ protected function link($page, $text, $class)
{ {
$query = '?page='.$page.$this->appendage($this->appends); $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>';
} }
/** /**