mirror of
https://github.com/avecms/AVE.cms.git
synced 2026-08-01 08:45:44 +00:00
16 lines
501 B
SQL
16 lines
501 B
SQL
UPDATE `{{prefix}}_rubrics`
|
|
SET `rubric_template` = REPLACE(
|
|
`rubric_template`,
|
|
'$AVE_Core->curentdoc',
|
|
CONCAT(CHAR(92), 'App', CHAR(92), 'Frontend', CHAR(92), 'PublicPageContext::document()')
|
|
)
|
|
WHERE `rubric_template` LIKE '%$AVE_Core->curentdoc%';
|
|
|
|
UPDATE `{{prefix}}_rubric_templates`
|
|
SET `template` = REPLACE(
|
|
`template`,
|
|
'$AVE_Core->curentdoc',
|
|
CONCAT(CHAR(92), 'App', CHAR(92), 'Frontend', CHAR(92), 'PublicPageContext::document()')
|
|
)
|
|
WHERE `template` LIKE '%$AVE_Core->curentdoc%';
|