Skip to content
This repository has been archived by the owner on Feb 4, 2021. It is now read-only.

Change generator tag #151

Merged
merged 2 commits into from
Jun 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/libraries/cms/application/administrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function dispatch($component = null)

$document->setTitle($this->get('sitename') . ' - ' . JText::_('JADMINISTRATION'));
$document->setDescription($this->get('MetaDesc'));
$document->setGenerator('Joomla! - Open Source Content Management');
$document->setGenerator('Joomla Platform - Open Source Web Application Platform');

$contents = JComponentHelper::renderComponent($component);
$document->setBuffer($contents, 'component');
Expand Down
4 changes: 2 additions & 2 deletions lib/libraries/cms/application/site.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,11 @@ public function dispatch($component = null)
// Add version number or not based on global configuration
if ($this->get('MetaVersion', 0))
{
$document->setGenerator('Joomla! - Open Source Content Management - Version ' . JVERSION);
$document->setGenerator('Joomla Platform - Open Source Web Application Platform - Version ' . JVERSION);
}
else
{
$document->setGenerator('Joomla! - Open Source Content Management');
$document->setGenerator('Joomla Platform - Open Source Web Application Platform');
}

$contents = JComponentHelper::renderComponent($component);
Expand Down
2 changes: 1 addition & 1 deletion lib/libraries/joomla/document/document.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class JDocument
*
* @var string
*/
public $_generator = 'Joomla! - Open Source Content Management';
public $_generator = 'Joomla Platform - Open Source Web Application Platform';

/**
* Document modified date
Expand Down