1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-09 15:46:24 +02:00
Files
php-monstra/engine/boot/actions.php
2015-10-16 18:09:58 +03:00

11 lines
271 B
PHP

<?php defined('MONSTRA_ACCESS') or die('No direct script access.');
/**
* Set meta generator
*/
Action::add('theme_meta', 'setMetaGenerator');
function setMetaGenerator()
{
echo '<meta name="generator" content="Powered by Monstra '.Monstra::VERSION.'" />'."\n";
}