<?php
if ($modx->event->name == 'OnWebPagePrerender' && $modx->resource->content_type == 1) {
// Проверяем, не авторизирован ли пользователь
if (!$modx->user->isAuthenticated($modx->context->get('key'))) {
$output = &$modx->resource->_output;
$output = preg_replace('|\s+|', ' ', $output);
}
}
$output = preg_replace('|\s{2,}|', ' ', $output);