Feature Language Change NPM Resource Changed PR-4.4-dev Pending

User tests: Successful: Unsuccessful:

avatar Elfangor93
Elfangor93
6 Jul 2024

The idea for this PR came from a workshop in which we analysed a survey in the joomla community of the D-A-CH region. The survey and the workshop was organized by Oliver Schuldt and @SniperSister. Thank you very much for your effort.

One of the points that was mentioned very frequently in the survey is that there is no good entry point for new, interested volunteers. It is difficult and confusing to get the necessary information on how to participate in the community. This is what we want to solve with the help of this module. It provides the most important information and links to join and participate in the Joomla community at the most visible place, the dashboard/cpanel of the backend. The links and information are retrieved from an API endpoint based on the user's current location. This ensures that the user sees the information that is most relevant to them and minimises the barrier to make it as easy as possible to get started in the community.

The module provides the following information:

  • Contact and links to your local Joomla community.
  • News about Joomla! and its community.
  • Upcoming events in your region.
  • Motivation to volunteer.

The current location of the user gets evaluated in the following order. If the location couldnt be found the next approach is used:

  1. Manually selected location
  2. Automatically detect the current position by the browser
  3. Location based on the current used system language
  4. Fallback location: London (UK, lat: 51.5000, long: 0.0000)

Initial development repository of the module:
https://github.com/Elfangor93/mod_community_info

Summary of Changes

  • Added the module (mod_community_info) in the administrator dashboard
  • Fixed the nesting (lft, rgt) of the assets table during installation

Testing Instructions

Install Joomla from source. Visit the administrator dashboard. You will find a new module there.

Actual result BEFORE applying this Pull Request

No module community module in the administrator dashboard.

Expected result AFTER applying this Pull Request

New module called "Joomla! Community and News" (mod_community_info) community module in the administrator dashboard.

Link to documentations

Please select:

  • Documentation link for docs.joomla.org:

  • No documentation changes for docs.joomla.org needed

  • Pull Request link for manual.joomla.org:

  • No documentation changes for manual.joomla.org needed

avatar Elfangor93 Elfangor93 - open - 6 Jul 2024
avatar Elfangor93 Elfangor93 - change - 6 Jul 2024
Status New Pending
avatar joomla-cms-bot joomla-cms-bot - change - 6 Jul 2024
Category Administration Language & Strings Modules Repository NPM Change JavaScript SQL Installation Postgresql
avatar Elfangor93 Elfangor93 - change - 6 Jul 2024
The description was changed
avatar Elfangor93 Elfangor93 - edited - 6 Jul 2024
avatar Elfangor93 Elfangor93 - change - 6 Jul 2024
Labels Added: Language Change NPM Resource Changed PR-4.4-dev
avatar Elfangor93
Elfangor93 - comment - 6 Jul 2024

I am not sure if I added everything correctly into the cms. I am very unsure about the assets in the media folder and the database entries (install scripts).

When adding the module to the assets table in the installation script installation/sql/mysql/base.sql I have seen that the nesting of the records seems to be wrong. So I let chatGPT rewrite the INSERT statement and to correct the lft and rgt values of the records to be entered. I hope this was correct to do.

avatar Elfangor93 Elfangor93 - change - 6 Jul 2024
The description was changed
avatar Elfangor93 Elfangor93 - edited - 6 Jul 2024
avatar Elfangor93 Elfangor93 - change - 6 Jul 2024
The description was changed
avatar Elfangor93 Elfangor93 - edited - 6 Jul 2024
avatar brianteeman
brianteeman - comment - 6 Jul 2024

This has been discussed and rejected many times. Without wishing to rehash the same reasons over and over again please search this repo for previous discussions

avatar brianteeman
brianteeman - comment - 6 Jul 2024

Where does this country list come from?
Why is it using language-country and not just country?
Why is it not translatable?
Surely there is a library that can be used instead of a static list?
There are names used for countries that are absolutely not the name of the country and have political implications that Joomla should have no role in.

avatar Elfangor93
Elfangor93 - comment - 6 Jul 2024

Where does this country list come from?

I used this list as a basis:
https://gist.github.com/vxnick/380904

The list is used to assign geolocation data to language codes. It is used as a fallback for the location service. If everything else fails it uses this list to get a location based on the current used language.

avatar brianteeman
brianteeman - comment - 6 Jul 2024

Where does this country list come from?

I used this list as a basis: https://gist.github.com/vxnick/380904

The list is used to assign geolocation data to language codes. It is used as a fallback for the location service. If everything else fails it uses this list to get a location based on the current used language.

I have no idea how that list is compiled or where it gets its data from. It is full of mistakes. There are reasons that we have ISO standards

avatar richard67
richard67 - comment - 6 Jul 2024

@Elfangor93 Please fix the PHP code style errors reported here: https://ci.joomla.org/joomla/joomla-cms/77082/1/8

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

Please fix the PHP code style errors

@richard67 Is there a fast way to fix code style? Maybe a tool that applies the codestyle required by Joomla?

avatar richard67
richard67 - comment - 7 Jul 2024

Please fix the PHP code style errors

@richard67 Is there a fast way to fix code style? Maybe a tool that applies the codestyle required by Joomla?

@Elfangor93 If you check the log in Drone it will tell you. E.g. use phpcbf instead of PHPCS in the command line. But you should never rely to tools only and always be able to check manually.

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

Thanks @richard67. Found this docs linked in manual.joomla.org:
https://docs.joomla.org/Joomla_CodeSniffer

Will adjust the code style based on that.

But I am confused. In docs. joomla.org its written to use phpcs --standard=Joomla file/to/sniff and in manual.joomla.org is written Since Joomla version 4.2, Joomla uses the PSR-12 coding standard.. What do I have to respect now?

avatar richard67
richard67 - comment - 7 Jul 2024

Thanks @richard67. Found this docs linked in manual.joomla.org: https://docs.joomla.org/Joomla_CodeSniffer

Will adjust the code style based on that.

That documentation MIGHT be outdated.

The command lines for our 2 tools can be found in the .drone.yml file in the PHPCS section.

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

You should adjust the code style to OUR rules with OUR tools and not to anybother rules(there are many).

So, this means that I have to use this file as the coding style.
Then I can check the coding style locally by doing phpcs --standard=ruleset.xml file/to/sniff?

avatar richard67
richard67 - comment - 7 Jul 2024

You should adjust the code style to OUR rules with OUR tools and not to anybother rules(there are many).

So, this means that I have to use this file as the coding style. Then I can check the coding style locally by doing phpcs --standard=ruleset.xml file/to/sniff?

Why don’t you just check the errors reported in that log which I have linked? Or don’t you have access to drone logs?

meanwhile we use 2 tools, phpcs and cs-fixer. The command lines can be found in the .drone.yml file.

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

Why don’t you just check the errors reported in that log which I have linked?

Because there are many. In lots of files. Its easier when I can check each file locally and commit when I dont get any errors again locally. If I would use the drone logs, it will take me ages to adjust everything.
--> I am not yet familiar with the code style Joomla is using. It seems that I have to adjust a lot.

avatar richard67
richard67 - comment - 7 Jul 2024

@Elfangor93 other question: you write that the lft rgt or the nested table was broken. Did you check that yourself, or do you 100% rely on ChatGPT? Gaps between rgt and the next lft are not really a problem. Fixing such gaps would be out of scope of this PR. In general I think that If one uses ChatGPT they should be able to verify its result.

avatar richard67
richard67 - comment - 7 Jul 2024

I am not yet familiar with the code style Joomla is using. It seems that I have to adjust a lot.

@Elfangor93 When working on a big code base it is always a good idea to look at existing code and do it the same way. Most rules are really obvious.

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

you write that the lft rgt or the nested table was broken.

You are right. Not broken but there were some illogical things - might be gaps. Therefore I didnt know how to include my module correctly. So I let chatGPT rewriting the lft and rgt values including my new entry for the module.

Of course I checked the result from chatGPT and I had to let him rewrite it multiple times until the output he created seemd to be correct.
But feel free to check again. To be honest I am not an SQL expert ;-)

avatar richard67
richard67 - comment - 7 Jul 2024

To be honest I am not an SQL expert ;-)

Nested set does not have any relation to SQL knowledge. See here for a description: https://en.m.wikipedia.org/wiki/Nested_set_model

In general when you add something new to a nested set table, add it do the right place with its lft value being the rgt value of the previous element plus one, the rgt value of the new element being its lft value plus one, and all lft and rgt values greater than the rgt values of the previous element need to be increased by two. So if you append an element at the end you have to increase at least the rgt value of the root element.

avatar richard67
richard67 - comment - 7 Jul 2024

P.S. I won’t have time to review this PR before the next weekend.

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

So if you append an element at the end you have to increase at least the rgt value of the root element.

But my module is a child of a level 1 asset com_modules. If I change the rgt value of it, I have to change all rgt values of all following level 1 assets and its childs to make the nested tree correct again. Or am I wrong?

avatar richard67
richard67 - comment - 7 Jul 2024

P.P.S. Don’t get me wrong. Your PR is appreciated.

The code style thing is not only important because it helps people in projects where many people contribute to code so they always find the same style so it makes it easier to work on existing code.

It is also important to fix it because our CI checks (Drone) skip all other tests when code style checks fail, in order to save resources. So when code style fails, system tests are not executed. The automated system tests start with making a new Joomla installation, so they would show if there was an SQL error in the base.sql or if anything else is broken by a PR.

That’s why I would recommend to fix that soon so we can see if automated tests are passing.

avatar richard67
richard67 - comment - 7 Jul 2024

So if you append an element at the end you have to increase at least the rgt value of the root element.

But my module is a child of a level 1 asset com_modules. If I change the rgt value of it, I have to change all rgt values of all following level 1 assets and its childs to make the nested tree correct again. Or am I wrong?

You are not wrong. But that’s not all. You also have to change all lft and rgt values which come after com_modules on the top level and their children, and finally the rgt value of the root element.

avatar richard67
richard67 - comment - 7 Jul 2024

I will try to find time to review and help on next weekend. Today I don’t really have much time, and during the week my paid job keeps me busy.

avatar brianteeman
brianteeman - comment - 7 Jul 2024

Performed a clean install of this branch

Expected result AFTER applying this Pull Request
New module called "Joomla! Community and News" (mod_community_info) community module in the administrator dashboard.

No module displayed

Manually added the module and got a page full of xml errors


Warning: simplexml_load_string(): Entity: line 39: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <script src="/media/templates/site/joomla/js/blockadblock.js?3.2.1" defer></scri in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 40: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <script src="/media/templates/site/joomla/js/js.cookie.js?2.1.4" defer></script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 41: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <script src="/media/vendor/skipto/js/skipto.min.js?4.1.7" defer></script> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 44: parser error : Specification mandates value for attribute nomodule in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <script src="/media/vendor/bootstrap/js/bootstrap-es5.min.js?5.3.2" nomodule de in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 44: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <script src="/media/vendor/bootstrap/js/bootstrap-es5.min.js?5.3.2" nomodule de in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 44: parser error : Couldn't find end of Start Tag script line 44 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <script src="/media/vendor/bootstrap/js/bootstrap-es5.min.js?5.3.2" nomodule de in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 44: parser error : Opening and ending tag mismatch: link line 29 and script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ="/media/vendor/bootstrap/js/bootstrap-es5.min.js?5.3.2" nomodule defer></script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 45: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ="/media/system/js/keepalive-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 45: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ="/media/system/js/keepalive-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 45: parser error : Couldn't find end of Start Tag script line 45 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ="/media/system/js/keepalive-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 45: parser error : Opening and ending tag mismatch: link line 28 and script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): s/keepalive-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" defer nomodule></script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 46: parser error : Specification mandates value for attribute nomodule in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): /media/system/js/messages-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" nomodule in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 46: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): /media/system/js/messages-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" nomodule in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 46: parser error : Couldn't find end of Start Tag script line 46 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): /media/system/js/messages-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" nomodule in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 46: parser error : Opening and ending tag mismatch: link line 27 and script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): js/messages-es5.min.js?51826f12bc3455e538ffc15078b0a0b3" nomodule defer></script in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 49: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): dia/templates/site/joomla/js/template.js?8dcef0fbc28f167601200d57eab31b2f" defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 50: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): edia/plg_system_webauthn/js/login.min.js?8dcef0fbc28f167601200d57eab31b2f" defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 52: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): dia/system/js/fields/passwordview.min.js?51826f12bc3455e538ffc15078b0a0b3" defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 68: parser error : Opening and ending tag mismatch: link line 26 and head in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </head> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 72: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): });var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 86: parser error : Entity 'reg' not defined in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): r="ltr"><span aria-hidden="true" class="fab fa-joomla"></span> Joomla!<sup>&reg; in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 168: parser error : Opening and ending tag mismatch: input line 167 and form in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </form> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 169: parser error : Opening and ending tag mismatch: input line 166 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 171: parser error : Opening and ending tag mismatch: input line 165 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 172: parser error : Opening and ending tag mismatch: input line 165 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 173: parser error : Opening and ending tag mismatch: form line 164 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 175: parser error : Opening and ending tag mismatch: div line 162 and nav in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </nav> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 220: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div class="com-content-category-blog blog" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 220: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div class="com-content-category-blog blog" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 220: parser error : Couldn't find end of Start Tag div line 220 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div class="com-content-category-blog blog" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 236: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 236: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 236: parser error : Couldn't find end of Start Tag div line 235 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 249: parser error : Opening and ending tag mismatch: img line 249 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): "Accessibility symbol on dotted world map" itemprop="thumbnail"> </figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 265: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 265: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 265: parser error : Couldn't find end of Start Tag dd line 265 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 267: parser error : Opening and ending tag mismatch: dl line 260 and dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Written by: <span itemprop="name">OutReach DC</span> </dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 281: parser error : Opening and ending tag mismatch: div line 251 and dl in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </dl> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 285: parser error : Opening and ending tag mismatch: figure line 248 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 288: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 288: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 288: parser error : Couldn't find end of Start Tag div line 287 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 301: parser error : Opening and ending tag mismatch: img line 301 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): rc="/images/callforassistantsecretary.png" itemprop="thumbnail"> </figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 316: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 316: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 316: parser error : Couldn't find end of Start Tag dd line 316 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 318: parser error : Opening and ending tag mismatch: dl line 311 and dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Written by: <span itemprop="name">Luca Marzo</span> </dd> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 332: parser error : Opening and ending tag mismatch: div line 303 and dl in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </dl> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 336: parser error : Opening and ending tag mismatch: figure line 300 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 337: parser error : Opening and ending tag mismatch: main line 215 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 339: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 339: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 339: parser error : Couldn't find end of Start Tag div line 338 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 352: parser error : Opening and ending tag mismatch: img line 352 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): king-group/jdayusa24-winners-blogpost.jpg" itemprop="thumbnail"> </figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 360: parser error : Entity 'nbsp' not defined in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mp;calid=97" style="text-decoration: none;">4th annual Joomla Day USA</a>!&nbsp; in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 367: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 367: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 367: parser error : Couldn't find end of Start Tag dd line 367 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 369: parser error : Opening and ending tag mismatch: dl line 362 and dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Written by: <span itemprop="name">Joomla! Marketing Team</span> </dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 383: parser error : Opening and ending tag mismatch: div line 354 and dl in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </dl> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 387: parser error : Opening and ending tag mismatch: figure line 351 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 390: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 390: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 390: parser error : Couldn't find end of Start Tag div line 389 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 403: parser error : Opening and ending tag mismatch: img line 403 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): rc="/images/blogs/leadership-blog/1_2.jpg" itemprop="thumbnail"> </figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 418: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 418: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 418: parser error : Couldn't find end of Start Tag dd line 418 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 420: parser error : Opening and ending tag mismatch: dl line 413 and dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Written by: <span itemprop="name">Luca Marzo</span> </dd> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 434: parser error : Opening and ending tag mismatch: div line 405 and dl in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </dl> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 438: parser error : Opening and ending tag mismatch: figure line 402 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 441: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 441: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 441: parser error : Couldn't find end of Start Tag div line 440 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): itemprop="blogPost" itemscope itemtype="https://schema.org/BlogP in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 454: parser error : Opening and ending tag mismatch: img line 454 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): rc="/images/blogs/leadership-blog/1_2.jpg" itemprop="thumbnail"> </figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 469: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 469: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 469: parser error : Couldn't find end of Start Tag dd line 469 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <dd class="createdby" itemprop="author" itemscope itemtype=" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 471: parser error : Opening and ending tag mismatch: dl line 464 and dd in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Written by: <span itemprop="name">Luca Marzo</span> </dd> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 485: parser error : Opening and ending tag mismatch: div line 456 and dl in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </dl> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 489: parser error : Opening and ending tag mismatch: figure line 453 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 570: parser error : Opening and ending tag mismatch: div line 76 and main in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </main> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 576: parser error : Entity 'nbsp' not defined in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div id="waldo-tag-13390">&nbsp;</div></div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 589: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=685&calid=103" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 589: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=685&calid=103" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 600: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=685&calid=103" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 600: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=685&calid=103" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 605: parser error : Opening and ending tag mismatch: img line 601 and a in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </a> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 606: parser error : Opening and ending tag mismatch: a line 600 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </figure> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 607: parser error : Opening and ending tag mismatch: figure line 599 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 610: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemtype="http://schema.org/Event" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 617: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 617: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=685&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 618: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/AggregateOffer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 625: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 625: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=685&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 627: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 629: parser error : Opening and ending tag mismatch: meta line 628 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 632: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 632: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 632: parser error : Couldn't find end of Start Tag div line 632 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 635: parser error : Opening and ending tag mismatch: meta line 634 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 645: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/Place" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 647: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 653: parser error : Opening and ending tag mismatch: meta line 652 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 654: parser error : Opening and ending tag mismatch: meta line 651 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 655: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/Place" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 657: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 662: parser error : Opening and ending tag mismatch: meta line 661 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 663: parser error : Opening and ending tag mismatch: meta line 660 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 664: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/Place" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 666: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 672: parser error : Opening and ending tag mismatch: meta line 671 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 673: parser error : Opening and ending tag mismatch: meta line 670 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 674: parser error : Opening and ending tag mismatch: meta line 669 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 676: parser error : Opening and ending tag mismatch: meta line 675 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 677: parser error : Opening and ending tag mismatch: meta line 668 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 685: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=563&calid=131" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 685: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=563&calid=131" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 696: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=563&calid=131" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 696: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=563&calid=131" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 701: parser error : Opening and ending tag mismatch: img line 697 and a in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </a> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 702: parser error : Opening and ending tag mismatch: a line 696 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </figure> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 703: parser error : Opening and ending tag mismatch: figure line 695 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 706: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemtype="http://schema.org/Event" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 713: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 713: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=563&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 714: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/AggregateOffer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 721: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 721: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=563&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 723: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 725: parser error : Opening and ending tag mismatch: meta line 724 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 728: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 728: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 728: parser error : Couldn't find end of Start Tag div line 728 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 731: parser error : Opening and ending tag mismatch: meta line 730 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 736: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/VirtualLocation" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 738: parser error : Opening and ending tag mismatch: meta line 737 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 741: parser error : Opening and ending tag mismatch: meta line 740 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 750: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=593&calid=131" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 750: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=593&calid=131" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 761: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=593&calid=131" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 761: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=593&calid=131" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 766: parser error : Opening and ending tag mismatch: img line 762 and a in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </a> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 767: parser error : Opening and ending tag mismatch: a line 761 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </figure> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 768: parser error : Opening and ending tag mismatch: figure line 760 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 771: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemtype="http://schema.org/Event" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 778: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 778: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=593&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 779: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/AggregateOffer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 786: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 786: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=593&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 788: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 790: parser error : Opening and ending tag mismatch: meta line 789 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 793: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 793: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 793: parser error : Couldn't find end of Start Tag div line 793 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 796: parser error : Opening and ending tag mismatch: meta line 795 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 801: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/VirtualLocation" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 803: parser error : Opening and ending tag mismatch: meta line 802 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 806: parser error : Opening and ending tag mismatch: meta line 805 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 815: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=686&calid=103" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 815: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=686&calid=103" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 826: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=686&calid=103" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 826: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=686&calid=103" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 831: parser error : Opening and ending tag mismatch: img line 827 and a in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </a> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 832: parser error : Opening and ending tag mismatch: a line 826 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </figure> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 833: parser error : Opening and ending tag mismatch: figure line 825 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 836: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemtype="http://schema.org/Event" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 843: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 843: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=686&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 844: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/AggregateOffer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 851: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 851: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=686&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 853: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 855: parser error : Opening and ending tag mismatch: meta line 854 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 858: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 858: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 858: parser error : Couldn't find end of Start Tag div line 858 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 861: parser error : Opening and ending tag mismatch: meta line 860 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 871: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/Place" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 873: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 879: parser error : Opening and ending tag mismatch: meta line 878 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 880: parser error : Opening and ending tag mismatch: meta line 877 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 881: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/Place" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 883: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 888: parser error : Opening and ending tag mismatch: meta line 887 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 889: parser error : Opening and ending tag mismatch: meta line 886 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 890: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/Place" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 892: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 898: parser error : Opening and ending tag mismatch: meta line 897 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 899: parser error : Opening and ending tag mismatch: meta line 896 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 900: parser error : Opening and ending tag mismatch: meta line 895 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 902: parser error : Opening and ending tag mismatch: meta line 901 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 903: parser error : Opening and ending tag mismatch: meta line 894 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 911: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=564&calid=131" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 911: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=564&calid=131" class="dp-ev in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 922: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=564&calid=131" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 922: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <a href="/user-groups.html?view=event&id=564&calid=131" class="dp-event- in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 927: parser error : Opening and ending tag mismatch: img line 923 and a in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </a> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 928: parser error : Opening and ending tag mismatch: a line 922 and figure in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </figure> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 929: parser error : Opening and ending tag mismatch: figure line 921 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 932: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemtype="http://schema.org/Event" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 939: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 939: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=564&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 940: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/AggregateOffer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 947: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): mprop="url" content="https://community.joomla.org/user-groups.html?view=event&id in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 947: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): " content="https://community.joomla.org/user-groups.html?view=event&id=564&calid in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 949: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 951: parser error : Opening and ending tag mismatch: meta line 950 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 954: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 954: parser error : attributes construct error in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 954: parser error : Couldn't find end of Start Tag div line 954 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="organizer" itemscope itemtype="http://schema.org/Organization"> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 957: parser error : Opening and ending tag mismatch: meta line 956 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 962: parser error : Specification mandates value for attribute itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div itemprop="location" itemtype="https://schema.org/VirtualLocation" itemscope in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 964: parser error : Opening and ending tag mismatch: meta line 963 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 967: parser error : Opening and ending tag mismatch: meta line 966 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 969: parser error : Opening and ending tag mismatch: meta line 960 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 970: parser error : Opening and ending tag mismatch: meta line 959 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 971: parser error : Opening and ending tag mismatch: meta line 958 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 972: parser error : Opening and ending tag mismatch: meta line 955 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 984: parser error : Opening and ending tag mismatch: input line 979 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 995: parser error : Opening and ending tag mismatch: input line 989 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1003: parser error : Opening and ending tag mismatch: input line 1000 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1038: parser error : Opening and ending tag mismatch: input line 1038 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <input type="hidden" name="0205bcb4160054b5b68d35345036e24c" value="1"> </div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1039: parser error : Opening and ending tag mismatch: input line 1037 and form in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </form> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1056: parser error : Opening and ending tag mismatch: input line 1036 and aside in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </aside> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1057: parser error : Opening and ending tag mismatch: input line 1035 and div in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1061: parser error : Entity 'nbsp' not defined in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <div id="waldo-tag-13387">&nbsp;</div></div> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1109: parser error : EntityRef: expecting ';' in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): href="https://github.com/joomla/joomla-websites/issues/new?title=[jcomm]%20&body in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1115: parser error : Entity 'copy' not defined in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): <p class="copyright">&copy; 2005 - 2024 <a href="https://opensourcematters.org" in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1132: parser error : Opening and ending tag mismatch: div line 977 and body in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </body> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1133: parser error : Opening and ending tag mismatch: div line 976 and html in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): </html> in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): Entity: line 1134: parser error : Premature end of data in tag form line 973 in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

Warning: simplexml_load_string(): ^ in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

mysql 8.0.30
php 8.3.3
Apache/2.4.57

avatar alikon
alikon - comment - 7 Jul 2024

there is no good entry point for new, interested volunteers.

the core is not the right entry point for this, imho

avatar richard67
richard67 - comment - 7 Jul 2024

@Elfangor93 Silly me, the most important thing I see now, haven't noticed before:

You have made your PR for the 4.4-dev branch, which currently still is the default branch because we still do bug fixes for 4.4-dev and 5.1-dev and so on.

But new features go into 5.2.

So you should rebase your PR for the 5.2-dev branch.

If necessary I or some other maintainer can help with that.

But sometimes when branches are not aligned, rebase can cause problems (which in most cases would be solved by the next upmerges from 4.4-dev to 5.1-dev and then from 5.1-dev to 5.2-dev by the corresponding release managers, but that may take some time).

So maybe it would be easier for you just to redo it with a new PR for the 5.2-dev branch.

Sorry for not having mentioned that earlier.

avatar brianteeman
brianteeman - comment - 7 Jul 2024

Let me know when that is fixed and I can test further

avatar brianteeman
brianteeman - comment - 7 Jul 2024

What is supposed to happen when I click on Choose Location?
image

All I see is an error in the browser console


index.php:840
Error:
ReferenceError: getCurrentLocation is not defined at HTMLDocument.callback (index.php:834:22)
  | callback | @ | index.php:840 -- | -- | -- | --

avatar brianteeman
brianteeman - comment - 7 Jul 2024

What am I supposed to see when I click on Events?

image

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

Warning: simplexml_load_string(): Entity: line 39: parser error : Specification mandates value for attribute defer in D:\repos\j4\administrator\modules\mod_community_info\src\Helper\CommunityInfoHelper.php on line 633

This error is thrown, when the API (https://djumla.dev/joomla-community-api/links.php) serves you a news feed URL which is not of type XML. Sadly the fallback news feed URL (https://community.joomla.org/blogs?format=feed&type=rss) does not serves a proper XML RSS feed.

avatar richard67
richard67 - comment - 7 Jul 2024

What am I supposed to see when I click on Events?

image

To me that looks as if it was not for the same region but for the same language. Or how else can it come that USA, UK and Australia are shown together? Is the "for your region" heading really right?

avatar richard67
richard67 - comment - 7 Jul 2024

Anyway, it needs to be rebased to or redone for 5.2-dev as I've mentioned above.

That will mean the assets table in the base.sql would have to be changed, and there will also be some small changes in code style regarding global name space and leading backslash.

I could help with the base.sql after that rebase, but it would not make much sense if I would suggest changes before that rebase.

avatar brianteeman
brianteeman - comment - 7 Jul 2024

I am not going to waste any more time on this - there is a huge amount of work needed before it is even useful and as stated before this idea has been discussed and rejected many times before.

avatar dgrammatiko
dgrammatiko - comment - 7 Jul 2024

Additional to all the previous comment I have to state some pretty obvious problems here:

  • The module breaks CSP because it has an inline script tag without any care for the nonce attribute. Could be fixed by moving the inline script to the relative existing script in the media files
  • The script is full of XSS! I have introduced the Joomla.sanitizeHtml for these cases. Although fetching HTML probably reveals a wrong architecture, the data should be json and the rendering should be done by the JS using some template(s).
  • The web assets are wrongly used, ie the script should be loaded as type => module with the correct dependencies. Ie not using the bootstrap modal but rather the Joomla one
  • The javascript script should have an extension .es6.js so that the listing could be applied, right now the script is not checked at all (ie has a bunch of console.log which is unacceptable for production)

The list could go on, but I guess you get that this is nowhere near production code. Also as an overview of the whole approach, personally I wouldn't introduce a module for this but either an extra (admin controllable) main menu entry (ie: contribute) or an extra entry in the user menu (the top right person icon) and have the options in the template/com_admin/com_cpanel).

Sorry but this shouldn't be merged unless completely refactored. I didn't meant to be so negative but the code is really bad ?‍♂️

My 2c

avatar Elfangor93
Elfangor93 - comment - 7 Jul 2024

Sorry but this shouldn't be merged unless completely refactored.

I am happy to receive your improved code proposals and merge it into the PR...

avatar Elfangor93 Elfangor93 - change - 8 Jul 2024
Title
Add community info module for admin dashboard
[4.4] Add community info module for admin dashboard
avatar Elfangor93 Elfangor93 - edited - 8 Jul 2024
avatar Elfangor93
Elfangor93 - comment - 8 Jul 2024

What is supposed to happen when I click on Choose Location?

A modal window opens where you can manually choose your current location.

What am I supposed to see when I click on Events?

The event opens in a new window. You will see the source website of the event and the event details. Maybe that the events provided by the curreent test API (https://djumla.dev/joomla-community-api/events.php?url=https://community.joomla.org/events\?format=feed&type=ical) are not really existing. They are just some test data.

avatar Elfangor93
Elfangor93 - comment - 8 Jul 2024

This PR will be continued in #43753 since this one was pointed to the wrong dev branch.

avatar Elfangor93 Elfangor93 - close - 8 Jul 2024
avatar Elfangor93 Elfangor93 - change - 8 Jul 2024
Status Pending Closed
Closed_Date 0000-00-00 00:00:00 2024-07-08 05:55:01
Closed_By Elfangor93
Labels Added: Feature
avatar Elfangor93
Elfangor93 - comment - 8 Jul 2024

To me that looks as if it was not for the same region but for the same language. Or how else can it come that USA, UK and Australia are shown together? Is the "for your region" heading really right?

With the current proof-of-concept API at https://djumla.dev/joomla-community-api/events.php?url=https://community.joomla.org/events?format=feed&type=ical we always get the same events independent on the location.

The real API will be created as soon as the PR is somewhere near to be merged.

avatar brianteeman
brianteeman - comment - 8 Jul 2024

So it cannot be tested until that is done. :(

But it does show one of the many fundamental flaws with this code - most of the world will have nothing to display

avatar SniperSister
SniperSister - comment - 8 Jul 2024

But it does show one of the many fundamental flaws with this code - most of the world will have nothing to display

It's a flaw with the POC API, not the code of the module.

avatar brianteeman
brianteeman - comment - 8 Jul 2024

we have no way of testing that assertion.

avatar dgrammatiko
dgrammatiko - comment - 8 Jul 2024

I am happy to receive your improved code proposals and merge it into the PR...

I already did. Move the inline script into the static file. Rename the file to .es6.js. Use the Joomla.sanitizeHtml to sanitize the HTML.

That said the whole implementation is very questionable, should it be a module (it's just a link/button)? should the data be HTML or JSON? etc...

avatar Elfangor93
Elfangor93 - comment - 8 Jul 2024

Move the inline script into the static file

In the inline script I pass in some PHP variables which is straight foreward in this way. When moving it to the static file, I have to pass the variables to the JavaScript in another way.
Can you provide me an example how to do it?
Never did it this way...

Use the Joomla.sanitizeHtml to sanitize the HTML

Which HTML do you mean?
I get the data from API/endpoints in JSON or XML/RSS. Do you want me to pass all the data returned through Joomla.sanitizeHtml before inserting it into the HTML?

avatar dgrammatiko
dgrammatiko - comment - 8 Jul 2024

In the inline script I pass in some PHP variables which is straight foreward in this way.

That's not how you should do it or how things are done in Joomla. If you want to pass data from PHP to JS you can either use some data attribute in the layout in the element that you are dealing with ie data-thing="someValue" and collect it in JS with document.querySelector('.element').dataset.thing OR if you have more structured data use in the PHP the Joomla API addScriptOptions and in the JS the respected API: Joomla.getOptions. Generally speaking in the Joomla project we try not to render js scripts inside php files.

Which HTML do you mean?

On line 10 of the js script you have:

modalBody.innerHTML = document.getElementById('template-'+modalId+'-body').innerHTML;

This is XSS!!! You should sanitize the HTML! using the API I mentioned in my previous comment.

It might be a good idea to check how thing are done in the project by reading some similar code

avatar dgrammatiko
dgrammatiko - comment - 8 Jul 2024

Before trying to patch those please rename the file build/media_source/mod_community_info/js/community-info.js to build/media_source/mod_community_info/js/community-info.es6.js and run the command npm run lint:js to check the code against the project's code standards. Also worth reading how the project's tools are used: https://github.com/joomla/joomla-cms/blob/4.4-dev/build/README.md

avatar Elfangor93
Elfangor93 - comment - 8 Jul 2024

Use the Joomla.sanitizeHtml to sanitize the HTML.

@dgrammatiko The function Joomla.sanitizeHtml() is removing a lot of important code from my html like for example the onclick property one a elements. And its even removing me the whole form element!
How can prevent that?

avatar dgrammatiko
dgrammatiko - comment - 8 Jul 2024

is removing a lot of important code from my html like for example the onclick property one a elements.

Exactly that's the XSS... and rightfully the code removes those inline events. Writing secure code needs a bit more thinking. There are many ways to skin that cat but not quite easy to explain in a PR comment

Add a Comment

Login with GitHub to post a comment