In order to trick source code snoppers from seeing,
'<meta name="generator" content="Joomla! 1.5 - Open Source Content Management" />'
place the following code string inside your index.php file.
Joomla Bamboo templates:
Right under, '<jdoc:include type="head" />' add this code string and replace 'ANY TEXT HERE' with whatever you wish
<?php $this->setGenerator('ANY TEXT HERE'); ?>
In other non Joomla Bamboo templates you'll need to use the following code string
<?php $document->setGenerator('ANY TEXT HERE'); ?>
Finally, you'll have to play around with the placement of the last code string. In some templates it works above the <head> calls while others need it in between the <head>.
If placed correctly inside your index.php file you'll now see;
<meta name="generator" content="ANY TEXT HERE" />
Hope this helps anyone out... It's a must do on every Joomla install I do!
Ed