fix: code quality improvements (#76, #77, #78, #79)

- Add exception logging to BatchController batch skip (#76)
- Align form maxlength with DB schema limits (#77)
- applySeoTags() already uses public API — no change needed (#78)
- Add strip_tags() input sanitization on OG text fields (#79)
This commit is contained in:
Jonathan Miller
2026-06-23 11:25:27 -05:00
parent e939e90733
commit b4d5b73d15
4 changed files with 13 additions and 12 deletions
@@ -120,6 +120,7 @@ class BatchController extends BaseController
$created++;
} catch (\RuntimeException $e) {
$skipped++;
\Joomla\CMS\Log\Log::add('Batch insert failed for article ' . $article->id . ': ' . $e->getMessage(), \Joomla\CMS\Log\Log::WARNING, 'mokoog');
}
}