Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Setting a url callback now use namespaces
- Loading branch information
Showing
with
10 additions
and
0 deletions.
-
+10
−0
UPGRADE_3.7.md
|
@@ -205,6 +205,16 @@ Before |
|
|
After |
|
|
|
|
|
fork.dev/backend/cronjob?module=Core&action=SendQueuedEmails |
|
|
|
|
|
* Setting a url callback now use namespaces |
|
|
|
|
|
Before |
|
|
|
|
|
$this->meta->setUrlCallback('BackendBlogModel', 'getURL', array($this->record['id'])); |
|
|
|
|
|
After |
|
|
|
|
|
$this->meta->setUrlCallback('Backend\Modules\Blog\Engine\Model', 'getURL', array($this->record['id'])); |
|
|
|
|
|
## API isAuthorized() instead of authorize() |
|
|
|
|
|