Скорее всего у текущего пользователя нет прав на шаблоны. Попробуйте зайти пользователем system, у него всегда есть все права, и проверьте права доступа в свойствах объекта Templates.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
services = $node->readAgentTable("System.Services");
if (services == null)
return null;
instances = %();
for(r : services->rows)
{
name = r->get(0);
startup = r->get(4);
if (name like "3CX*" and startup == "Auto")
instances->append(name);
}
return instances;