Fix Link method in EditHandler.php

This commit is contained in:
PixNyb 2024-04-03 12:27:12 +00:00
parent 4fbab0d232
commit a97bea9efc
No known key found for this signature in database
GPG Key ID: 3D8A3F6458B449FB
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class EditHandler extends Handler
*/
public function Link($action = null)
{
return Controller::join_links(parent::Link(), $this->stat('url_segment'), $action);
return Controller::join_links(parent::Link(), self::$url_segment, $action);
}
/**