You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: administrator/language/en-GB/en-GB.plg_authentication_gmail.ini
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,12 @@
4
4
; Note : All ini files need to be saved as UTF-8
5
5
6
6
PLG_AUTHENTICATION_GMAIL="Authentication - GMail"
7
+
PLG_GMAIL_ERROR_ACCOUNT_DISABLED_OR_NOT_ACTIVATED="Your local account is disabled or not activated"
8
+
PLG_GMAIL_ERROR_LOCAL_USERNAME_CONFLICT="A local username conflicts with your GMail user"
7
9
PLG_GMAIL_FIELD_APPLYSUFFIX_DESC="Options for applying the suffix: Don't apply the suffix, only apply the suffix if missing (any user supplied suffix will be used) or always apply the suffix replacing any user supplied suffix"
PLG_GMAIL_FIELD_SUFFIX_DESC="A suffix to use for the username, typically gmail.com (or googlemail.com) is the suffix but you may wish to use a Google Apps for Your Domain suffix. This doesn't include the @ symbol, if left blank username suffix will be ignored."
10
14
PLG_GMAIL_FIELD_SUFFIX_LABEL="Username Suffix"
11
15
PLG_GMAIL_FIELD_USER_BLACKLIST_DESC="A list of usernames not permitted to log in via the GMail plugin. The user names should be separated by a comma."
// M is the mapping table. C is the core_content table. Ct is the content_types table.
529
521
$query->select('m.type_alias, m.content_item_id, m.core_content_id, count(m.tag_id) AS match_count, MAX(m.tag_date) as tag_date, MAX(c.core_title) AS core_title')
@@ -545,8 +537,8 @@ public function getTagItemsQuery($tagId, $typesr = null, $includeChildren = fals
545
537
546
538
->join('LEFT', '#__users AS ua ON ua.id = c.core_created_user_id')
547
539
548
-
->where('m.tag_id IN (' . $tagId . ')')
549
-
->where('c.core_state IN (' . $stateFilter . ')');
540
+
->where('m.tag_id IN (' . implode(',', $tagIds) . ')')
541
+
->where('c.core_state IN (' . implode(',', $stateFilters) . ')');
550
542
551
543
// Optionally filter on language
552
544
if (empty($language))
@@ -585,7 +577,7 @@ public function getTagItemsQuery($tagId, $typesr = null, $includeChildren = fals
0 commit comments