b66387bacb
Product rename (display name / docs / comments / language strings only —
technical element names mokoog/com_mokoog/MokoOG namespace unchanged):
- Replace "MokoJoom" -> "MokoSuite" across 55 files
- Fixes the update-site license lookup in script.php, which matched the
old "%MokoJoomOpenGraph%" name and would never find a "MokoSuite" site
Joomla 6 compatibility:
- script.php: minimumJoomla 4.0.0 -> 6.0.0, minimumPhp 8.1.0 -> 8.2.0,
and actually enforce the Joomla floor in preflight() (was PHP-only)
- Add PKG_MOKOOG_JOOMLA_VERSION_ERROR language strings (en-GB, en-US)
- openapi.yaml + README state Joomla 6.0+ requirement
- Audit confirmed the codebase already uses only Joomla-6-supported APIs
(cherry picked from commit 7fb7e38762)
11 lines
323 B
SQL
11 lines
323 B
SQL
--
|
|
-- MokoSuiteOpenGraph 01.02.00 — Add multilingual OG tag support
|
|
--
|
|
|
|
ALTER TABLE `#__mokoog_tags`
|
|
ADD COLUMN `language` CHAR(7) NOT NULL DEFAULT '*' AFTER `canonical_url`;
|
|
|
|
ALTER TABLE `#__mokoog_tags`
|
|
DROP INDEX `idx_content`,
|
|
ADD UNIQUE KEY `idx_content_lang` (`content_type`, `content_id`, `language`);
|