Indexiert, obwohl durch robots.txt-Datei blockiert

Das betrifft nur eine Seite:
http://www.meineSeite.de/widgets/index/refreshStatistic

Ich vermute, dass das Problem von themes → frontend → bare → frontend-> robots_txt → index.tpl kommt.

Kann das daran liegen, dass der Eintrag für die widgets einmal unter
frontend_robots_txt_disallows
und einmal unter
frontend_robotstxt_allows
steht?

{block name="frontend_robots_txt_disallows"}
    {$robotsTxt->setDisallow('/compare')}
    {$robotsTxt->setDisallow('/checkout')}
    {$robotsTxt->setDisallow('/register')}
    {$robotsTxt->setDisallow('/account')}
    {$robotsTxt->setDisallow('/address')}
    {$robotsTxt->setDisallow('/note')}
    {$robotsTxt->setDisallow('/widgets')}
    {$robotsTxt->setDisallow('/listing')}
    {$robotsTxt->setDisallow('/ticket')}
    {$robotsTxt->setDisallow('/tracking')}

    {block name="frontend_robots_txt_disallows_output"}
        {foreach $robotsTxt->getDisallows() as $disallow}
            {$disallow}
        {/foreach}
    {/block}
{/block}

{block name="frontend_robots_txt_allows"}
    {$robotsTxt->setAllow('/widgets')}
    {block name="frontend_robots_txt_allows_output"}
        {foreach $robotsTxt->getAllows() as $allow}
            {$allow}
        {/foreach}
    {/block}
{/block}