<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sean+Clement</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sean+Clement"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Sean_Clement"/>
	<updated>2026-06-30T00:46:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Accessing_the_current_user_object&amp;diff=117668</id>
		<title>Accessing the current user object</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Accessing_the_current_user_object&amp;diff=117668"/>
		<updated>2014-04-15T11:15:39Z</updated>

		<summary type="html">&lt;p&gt;Sean Clement: Removed reference to &amp;quot;$user = JFactory::getUser(&amp;#039;username&amp;#039;);&amp;quot; as it doesn&amp;#039;t work&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{version/tutor|2.5,3.x}}&lt;br /&gt;
== Basics ==&lt;br /&gt;
&lt;br /&gt;
For every request in Joomla!, there is one user. Information about this user is readily available through the Joomla! framework in the form of an object. To get this object for the current user, use the following member function of JFactory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$user = JFactory::getUser();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or, to get information about any other registered user you can call the function with a user &#039;id&#039;, e.g. for user &#039;99&#039;;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$user = JFactory::getUser(99);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Getting a reference through getUser() ensures that only one user object is created during any one Joomla! request, saving on memory and processing time. Most of the information about the user is available through public member variables of the user object. This code displays the current user&#039;s name, email, user name and user type:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
echo &amp;quot;&amp;lt;p&amp;gt;Your name is {$user-&amp;gt;name}, your email is {$user-&amp;gt;email}, and your username is {$user-&amp;gt;username}&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Since version 1.6 Joomla has a flexible ACL system, which makes $user-&amp;gt;usertype deprecated! &lt;br /&gt;
&lt;br /&gt;
The usertype field in #__users will only contain values for users that have been migrated from Joomla 1.5, but for new created users the field will be empty. &lt;br /&gt;
&lt;br /&gt;
Use $user-&amp;gt;groups to retrieve an array with all the IDs that refer to the groups (from #__usergroups table) of a user.&lt;br /&gt;
&lt;br /&gt;
== Object Member Variables and Parameters ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These are the relevant member variables automatically generated on a call to getUser():&lt;br /&gt;
* id - The unique, numerical user id. Use this when referencing the user record in other database tables.&lt;br /&gt;
* name - The name of the user. (e.g. Vint Cerf)&lt;br /&gt;
* username - The login/screen name of the user. (e.g. shmuffin1979)&lt;br /&gt;
* email - The email address of the user. (e.g. crashoverride@hackers.com)&lt;br /&gt;
* password - The encrypted version of the user&#039;s password&lt;br /&gt;
* password_clear - Set to the user&#039;s password only when it is being changed. Otherwise, remains blank.&lt;br /&gt;
* usertype - &amp;lt;strike&amp;gt;The role of the user within Joomla!. (Super Administrator, Editor, etc...)&amp;lt;/strike&amp;gt; Has been deprecated since Joomla 1.6. Use $user-&amp;gt;groups to retrieve an array with all the roles of a user.&lt;br /&gt;
* groups - Set to the user&#039;s group ids.&lt;br /&gt;
* block - Set to &#039;1&#039; when the user is set to &#039;blocked&#039; in Joomla!.&lt;br /&gt;
* registerDate - Set to the date when the user was first registered.&lt;br /&gt;
* lastvisitDate - Set to the date the user last visited the site.&lt;br /&gt;
* guest - If the user is not logged in, this variable will be set to &#039;1&#039;. The other variables will be unset or default values.&lt;br /&gt;
* lastResetTime - Set to the last time the password was reset.&lt;br /&gt;
* resetCount - Counts the number of password resets.&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
In addition to the member variables (which are stored in the database in columns), there are parameters for the user that hold preferences. To get one of these parameters, call the getParam() member function of the user object, passing in the name of the parameter you want along with a default value in case it is blank.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$user = JFactory::getUser();&lt;br /&gt;
$language = $user-&amp;gt;getParam(&#039;language&#039;, &#039;the default&#039;);&lt;br /&gt;
	&lt;br /&gt;
echo &amp;quot;&amp;lt;p&amp;gt;Your language is set to {$language}.&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Determining Status ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Frequently, you will just want to make sure the user is logged in before continuing. The &#039;guest&#039; property will be set to &#039;1&#039; when the current user is not logged in. When the user is authenticated, &#039;guest&#039; will be set to &#039;0&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	$user = JFactory::getUser();&lt;br /&gt;
	&lt;br /&gt;
	if ($user-&amp;gt;guest) {&lt;br /&gt;
		echo &amp;quot;&amp;lt;p&amp;gt;You must login to see the content. I want your email address.&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
	} else {&lt;br /&gt;
	&lt;br /&gt;
		&amp;lt;h1&amp;gt;Impromptu leftovers salad that goes well with fish&amp;lt;/h1&amp;gt;&lt;br /&gt;
		&amp;lt;ul&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;1/2 cup chopped celery&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;1/4 cup raisins&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;1 teaspoon Extra Virgin Olive Oil&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;2 tablespoons of faux Thai lemongrass marinade&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;1/4 cup shredded fresh basil&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;Sprinkling of dill weed&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;Big pinch of kosher salt&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;Several lettuce leaves&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
			&amp;lt;p&amp;gt;Wash the lettuce and basil and place in a salad bowl.&lt;br /&gt;
			Get out a much smaller bowl and swish around all of the remaining ingredients. &lt;br /&gt;
			Pour this over the greens and toss.&lt;br /&gt;
			Serves two.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Privileges ==&lt;br /&gt;
Not all users are given equal rights. For instance, a Super Administrator may be able to edit anyone&#039;s content, while a Publisher may only be able to edit their own. The authorise() member function can be used to determine if the current user has permission to do a certain task. The first parameter is used to identify which task we wish to check being allowed. The second represents the component we wish to retrieve the ACL information from.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	$user = JFactory::getUser();&lt;br /&gt;
	&lt;br /&gt;
	if ($user-&amp;gt;authorise(&#039;core.edit&#039;, &#039;com_content&#039;))&lt;br /&gt;
	{&lt;br /&gt;
		echo &amp;quot;&amp;lt;p&amp;gt;You may edit all content.&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	else&lt;br /&gt;
	{&lt;br /&gt;
		echo &amp;quot;&amp;lt;p&amp;gt;You may not edit all content.&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	if ($user-&amp;gt;authorise(&#039;core.edit.own&#039;, &#039;com_content&#039;))&lt;br /&gt;
	{&lt;br /&gt;
		echo &amp;quot;&amp;lt;p&amp;gt;You may edit your own content.&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	else&lt;br /&gt;
	{&lt;br /&gt;
		echo &amp;quot;&amp;lt;p&amp;gt;You may not edit your own content.&amp;lt;/p&amp;gt;&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Information about the current user is readily available in any part of your Joomla! extension. You need only fetch the object and access the member variables. You can authorise the user against the core permissions set, or create your own to suit your needs.&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/JFactory/getUser JUser API documentation] see getInstance.&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;br /&gt;
[[Category:Tutorials]][[Category:Framework]]&lt;br /&gt;
[[Category:Module Development]]&lt;br /&gt;
[[Category:Plugin Development]][[Category:Component Development]]&lt;/div&gt;</summary>
		<author><name>Sean Clement</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla!_CMS_versions&amp;diff=106731</id>
		<title>Joomla! CMS versions</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla!_CMS_versions&amp;diff=106731"/>
		<updated>2014-01-08T13:32:17Z</updated>

		<summary type="html">&lt;p&gt;Sean Clement: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Check for the latest Joomla! CMS version. If you are not on the latest release, read the release notes to see if you need to upgrade.  If a release is being made in order to address security issues then it is strongly advised that you upgrade as soon as possible. You can see the release history of each series in the table below. Click the &#039;&#039;&#039;version history link&#039;&#039;&#039; in the notes column to find details on exact release date, release notes and package and MD5s.&lt;br /&gt;
&lt;br /&gt;
*Normally, you should use the latest version of Joomla! for a new site unless you have a specific reason not to. &lt;br /&gt;
*The latest version can be downloaded from the [http://joomlacode.org/gf/project/joomla/frs/?action=index Joomla! download site].&lt;br /&gt;
* Make sure you &#039;&#039;&#039;subscribe to the [http://feeds.joomla.org/JoomlaSecurityNews Joomla! Security Announcements] feed&#039;&#039;&#039;. This RSS feed is used to make announcements, including the availability of new releases, that could affect the security of your site. You have the option to subscribe to this feed by RSS or email.&lt;br /&gt;
* If you are running an earlier release of the current version (for example, you are running 2.5.1 and the current version is 2.5.6), you should upgrade to the current version. Each minor release fixes a number of bugs and/or security issues. It is always good practice to upgrade to the latest maintenance version as a first step in troubleshooting a problem and fixing any newly discovered security issues.&lt;br /&gt;
{{-}}&lt;br /&gt;
==Joomla! CMS versions==&lt;br /&gt;
{| border=1 cellpadding=2 cellspacing=0 style=&amp;quot;text-align:center; border-collapse:collapse; border-color:#000;&amp;quot;&lt;br /&gt;
|   rowspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | CMS Version&lt;br /&gt;
|   rowspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Available&lt;br /&gt;
|   colspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Support&lt;br /&gt;
|  style=&#039;display:none;&#039; |&lt;br /&gt;
|   rowspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | End of Life&lt;br /&gt;
|   rowspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Upgrade Type&lt;br /&gt;
|   rowspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Notes&lt;br /&gt;
|   rowspan=2 style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Latest Release&lt;br /&gt;
|- &lt;br /&gt;
|  style=&#039;display:none;&#039; | &lt;br /&gt;
|  style=&#039;display:none;&#039; | &lt;br /&gt;
|  style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Bugs&lt;br /&gt;
|  style=&amp;quot;text-align:center; background-color:#4a86e8; font-weight:bold;&amp;quot; | Security&lt;br /&gt;
|  style=&#039;display:none;&#039; | &lt;br /&gt;
|  style=&#039;display:none;&#039; | &lt;br /&gt;
|  style=&#039;display:none;&#039; | &lt;br /&gt;
|  style=&#039;display:none;&#039; | &lt;br /&gt;
|-  &lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; font-weight:bold;&amp;quot; | 1.5&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Sept 2012&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Migration to 2.5&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Plan to migrate to 2.5 now&amp;lt;br/&amp;gt;[[Joomla 1.5 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | &#039;&#039;&#039;EOL&#039;&#039;&#039; at 1.5.26&lt;br /&gt;
|- &lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; font-weight:bold;&amp;quot; | 1.6&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Aug 2011&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | One-click to 2.5&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Upgrade to 2.5 now&amp;lt;br/&amp;gt;[[Joomla 1.6 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | 1.6.6&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; font-weight:bold;&amp;quot; | 1.7&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Feb 2012&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | One-click to 2.5&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Upgrade to 2.5 now&amp;lt;br/&amp;gt;[[Joomla 1.7 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | 1.7.5&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3; font-weight:bold;&amp;quot; | 2.5&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | [[File:Checkmark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | [[File:Checkmark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | [[File:Checkmark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | December 31st, 2014&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | One-click to 3.x&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | Recommended as-needed basis for new installs&amp;lt;br/&amp;gt;[[Joomla 2.5 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot; | &#039;&#039;&#039;{{CurrentLTSVer|maintanence}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:100px; font-weight:bold;&amp;quot; | 3.0&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:100px;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:100px;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:100px;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:100px;&amp;quot; | May 2013&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:100px;&amp;quot; | One-click to 3.1&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; width:306px;&amp;quot; | You should use the one click upgrade to Joomla 3.1&amp;lt;br/&amp;gt;[[Joomla 3.0 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | 3.0.4&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc; font-weight:bold;&amp;quot; | 3.1&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | [[File:X-mark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | Dec 2013&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | One-click to 3.2&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | You should use the one click upgrade to Joomla 3.2&amp;lt;br/&amp;gt;[[Joomla 3.1 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#f4cccc;&amp;quot; | 3.1.6&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3; font-weight:bold;&amp;quot; | 3.2&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | [[File:Checkmark.png|Checkmark.png]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | [[File:Checkmark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | [[File:Checkmark.png|center]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | Apr 2014&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | One-click to 3.5&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | Recommended for most new installs&amp;lt;br/&amp;gt;[[Joomla 3.2 version history]]&lt;br /&gt;
|   style=&amp;quot;background-color:#d9ead3;&amp;quot;  | &#039;&#039;&#039;{{CurrentSTSVer|maintanence}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#fff; font-weight:bold;&amp;quot; | 3.5&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | Mar 2014&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | -&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | -&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | December 31st, 2016&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | One-click to 4.0&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | &lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | &lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background-color:#fff; font-weight:bold;&amp;quot;  | 4.0&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | Sept 2014&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | -&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | -&lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | &lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | &lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | &lt;br /&gt;
|   style=&amp;quot;background-color:#fff;&amp;quot;  | &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla! versions]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sean Clement</name></author>
	</entry>
</feed>