Cleanups, fixes and a bit of optimizations for site/components batch #5#12294
Merged
rdeutz merged 8 commits intojoomla:stagingfrom Jun 8, 2017
frankmayer:site-com_tags-com_users-com_wrapper
Merged
Cleanups, fixes and a bit of optimizations for site/components batch #5#12294rdeutz merged 8 commits intojoomla:stagingfrom frankmayer:site-com_tags-com_users-com_wrapper
rdeutz merged 8 commits intojoomla:stagingfrom
frankmayer:site-com_tags-com_users-com_wrapper
Conversation
- com_tags - com_users - com_wrapper Note: This is a single commit bundling all types of changes, since PR #12261 which had detailed commits, was rejected as a whole
Contributor
|
I have tested this item ✅ successfully on fd62014 This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/12294. |
# Conflicts: # components/com_tags/views/tags/tmpl/default_items.php # components/com_users/router.php # components/com_users/views/login/tmpl/default_login.php # components/com_users/views/login/tmpl/default_logout.php # components/com_users/views/registration/tmpl/default.php # components/com_wrapper/views/wrapper/view.html.php
Contributor
|
I have tested this item ✅ successfully on 62df93f This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/12294. |
This was referenced Dec 13, 2016
Merged
# Conflicts: # components/com_tags/views/tag/tmpl/default.php # components/com_tags/views/tag/tmpl/list.php # components/com_tags/views/tag/tmpl/list_items.php # components/com_tags/views/tag/view.feed.php # components/com_tags/views/tags/view.feed.php # components/com_users/helpers/html/users.php # components/com_users/models/profile.php
Contributor
Author
|
Fixed some conflicts that had occurred in the meantime. |
andrepereiradasilva
approved these changes
Dec 15, 2016
Quy
reviewed
May 28, 2017
| } | ||
|
|
||
| if ($menu && ($menu->query['option'] != 'com_tags')) | ||
| if ($menu && ($menu->query['option'] !== 'com_tags')) |
Quy
reviewed
May 28, 2017
| // Note that there are certain parts of this layout used only when there is exactly one tag. | ||
| JHtml::addIncludePath(JPATH_COMPONENT . '/helpers'); | ||
| $isSingleTag = (count($this->item) == 1); | ||
| $isSingleTag = (count($this->item) === 1); |
Quy
reviewed
May 28, 2017
components/com_users/router.php
Outdated
| { | ||
| // Check to see if we have found the resend menu item. | ||
| if (empty($resend) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] == 'resend')) | ||
| if (empty($resend) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] === 'resend')) |
Contributor
There was a problem hiding this comment.
Remove parentheses. ($items[$i]->query['view'] === 'resend')
Quy
reviewed
May 28, 2017
components/com_users/router.php
Outdated
|
|
||
| // Check to see if we have found the reset menu item. | ||
| if (empty($reset) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] == 'reset')) | ||
| if (empty($reset) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] === 'reset')) |
Quy
reviewed
May 28, 2017
components/com_users/router.php
Outdated
|
|
||
| // Check to see if we have found the remind menu item. | ||
| if (empty($remind) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] == 'remind')) | ||
| if (empty($remind) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] === 'remind')) |
Quy
reviewed
May 28, 2017
components/com_users/router.php
Outdated
|
|
||
| // Check to see if we have found the login menu item. | ||
| if (empty($login) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] == 'login')) | ||
| if (empty($login) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] === 'login')) |
Quy
reviewed
May 28, 2017
components/com_users/router.php
Outdated
|
|
||
| // Check to see if we have found the registration menu item. | ||
| if (empty($registration) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] == 'registration')) | ||
| if (empty($registration) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] === 'registration')) |
Quy
reviewed
May 28, 2017
components/com_users/router.php
Outdated
|
|
||
| // Check to see if we have found the profile menu item. | ||
| if (empty($profile) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] == 'profile')) | ||
| if (empty($profile) && !empty($items[$i]->query['view']) && ($items[$i]->query['view'] === 'profile')) |
Quy
reviewed
May 28, 2017
| <?php endif; ?> | ||
|
|
||
| <?php if ($this->items == false || $n == 0) : ?> | ||
| <?php if ($this->items == false || $n === 0) : ?> |
Quy
reviewed
May 28, 2017
| <?php endif; ?> | ||
|
|
||
| <?php if ($this->items == false || $n == 0) : ?> | ||
| <?php if ($this->items == false || $n === 0) : ?> |
- Some more changes in updated stuff
…per' into site-com_tags-com_users-com_wrapper
Contributor
|
I have tested this item ✅ successfully on bbc3d57 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/12294. |
Contributor
|
I have tested this item ✅ successfully on bbc3d57 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/12294. |
|
RTC after two successful tests. |
rdeutz
added a commit
that referenced
this pull request
Jul 25, 2017
roland-d
added a commit
to roland-d/joomla-cms
that referenced
this pull request
Jul 26, 2017
* staging: (274 commits) Add JCryptCipherSodium to support libsodium (joomla#16754) Performance 2 (libraries/legacy) (joomla#12220) Performance 6 (templates) (joomla#12233) Fixed typehint (joomla#16425) Fix for: Repeatable field is no longer rendered with Chosen layout (joomla#16471) Fix the path for the ajax-loader.gif (joomla#16701) Menu items list parent filter (joomla#17060) Text Filters layout (joomla#17113) mod_login showon option (joomla#17153) com_banners incorret tooltip (joomla#17157) fix joomla.content.options_default (joomla#17123) remove the never working limitstart call (joomla#17184) Update phpDocumentor build set 3.8.0 Dev State Prepare 3.7.4 Stable Release fixed a logic change in joomla#12294, thanks @Hoffi1 Update sv-SE.ini Update pt-BR.ini Update lv-LV.ini Update fa-IR.ini ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note: This is a single commit bundling all types of changes, since PR #12261 which had detailed commits, was rejected as a whole