Merge pull request #23190 from owncloud/use-proper-url-for-search-results
Use proper URLs for search results
This commit is contained in:
commit
f6a5fe452d
1 changed files with 6 additions and 4 deletions
|
@ -79,10 +79,12 @@ class File extends \OCP\Search\Result {
|
||||||
$info = pathinfo($path);
|
$info = pathinfo($path);
|
||||||
$this->id = $data->getId();
|
$this->id = $data->getId();
|
||||||
$this->name = $info['basename'];
|
$this->name = $info['basename'];
|
||||||
$this->link = \OCP\Util::linkTo(
|
$this->link = \OC::$server->getURLGenerator()->linkToRoute(
|
||||||
'files',
|
'files.view.index',
|
||||||
'index.php',
|
[
|
||||||
array('dir' => $info['dirname'], 'scrollto' => $info['basename'])
|
'dir' => $info['dirname'],
|
||||||
|
'scrollto' => $info['basename'],
|
||||||
|
]
|
||||||
);
|
);
|
||||||
$this->permissions = $data->getPermissions();
|
$this->permissions = $data->getPermissions();
|
||||||
$this->path = $path;
|
$this->path = $path;
|
||||||
|
|
Loading…
Reference in a new issue