Просмотр файла globalchat/view/globalchat/templates/plugins/function.is_web.php

Размер файла: 146B
<?php

function smarty_function_is_web ()
{
global $gc_browser_type;
	if ($gc_browser_type == 'web')
	return true;
	else
	return false;
}