-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[4.0] Skipto #24042
[4.0] Skipto #24042
Conversation
[mod_articles_category] Showon
Fix OpenSearch implementation
[plg_user_profile] Add RTL check to ToS field
Fix sampledata menu creation
…21098) * Exceptions in Joomla\CMS\Table\Usergroup refer to categories Pull Request for Issue joomla#21092 . ### Summary of Changes remove todo that is clearly a copy paste error from somewhere else change exception message to usergroups from catergory NOTE the first exception` if ($this->id == 0)` I am not sure if that should even be present - doesn't look like it to me - please advise * Update Usergroup.php
) * correct video url fixes joomla#21145 (comment) * fix
* Speed up regex in emailcloak plugin * Fix comment
* Fix subform.repeatable-table multi field styling * Fix staging less/css * revert previous
…and update sites rebuild (joomla#16355) * Fix a problem with older language packs Language packs installed under older Joomla versions are registered in the database under their package name, not under their name and since rebuild function fails on them. e.g. package with <name>Afrikaans (South Africa)</name> <packagename>af-ZA</packagename> has name column in #_extensions table set as af-ZA and since existing query fails. * Update updatesites.php
@brianteeman try $document->addScriptDeclaration("document.addEventListener('DOMContentLoaded', function() {
window.skipToMenuInit(Joomla.getOptions('skipto-settings'));
});"); |
* [4.0] Postgresql date fix Correct the date used in a postgres sql file * installation
OK. Either way - make the javascript change I suggested - @dgrammatiko 's is wrong (that function doesn't take an options argument)
Then see if the strings translate for you or not |
I will do after the rugby #priorities |
It's only important if scotland manage to upset :D :D |
@wilsonge Thanks!!!! The javascript is now working and like you I have had to add the $this->loadLanguage() I am going to work on adding options etc in the plugin now |
$current_section = 0; | ||
} | ||
|
||
if (!($current_section & $section)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (!($current_section & $section)) | |
if (!($current_section && $section)) |
See #24142 |
@wilsonge yeah for sure I'm wrong: |
Initial commit - still a work in progress
@dgrammatiko Please advise/help on the addScriptOptions