Are those calls in the template? Weird! Did you spell the usergroup right? What's the gist of the error?
I've only dealt with manager users in evo1012 but try this (untested):
snippet:
displayMsg
<?php
$output = '';
$private = isset( $private ) ? $private : $output;
$public = isset( $public ) ? $public : $output;
if (!isset($_SESSION['webValidated']))
{
$output = $public;
}
else
{
$output = $private;
}
return $output;
?>
ยป The call:
[[displayMsg?private=`This is private` &public=`This is public`]]
Notice: EVO snippet variables strip
= ,
? and
&
In order to use those ones, one has to do:
<?php
$output = '';
$params = array();
if (isset($private)) $params['private'] = str_replace(array('|xq|','|xe|','|xa|'), array('?','=','&'), $private);
else return $output;
if (isset($public)) $params['public'] = str_replace(array('|xq|','|xe|','|xa|'), array('?','=','&'), $public);
else return $output;
// This is how FeedX does it
// ? => |xq|
// = => |xe|
// & => |xa|
if (!isset($_SESSION['webValidated']))
{
$output = $params['public'];
}
else
{
$output = $params['private'];
}
return $output;
?>