mirror of
https://github.com/e107inc/e107.git
synced 2025-07-27 18:00:30 +02:00
13 lines
209 B
PHP
13 lines
209 B
PHP
<?php
|
|
/* $Id: setstyle.php,v 1.1 2009-08-14 22:31:09 e107coders Exp $ */
|
|
|
|
function setstyle_shortcode($parm)
|
|
{
|
|
global $style; // BC
|
|
$style = $parm; // BC
|
|
|
|
e107::getRender()->eSetStyle = $parm;
|
|
}
|
|
|
|
?>
|