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:
parent
f97fb3a457
commit
2a5d7c3080
|
@ -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>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue