Changeset 563


Ignore:
Timestamp:
Aug 11, 2013, 12:25:01 AM (11 years ago)
Author:
chronos
Message:
  • Opraveno: Chybné volání zpracování fronty emailů.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/AppModule.php

    r556 r563  
    107107        foreach($List as $Item)
    108108        {
    109           if(is_dir($Directory.'/'.$Item) and ($Item != '.') and ($Item != '..'))
     109          if(is_dir($Directory.'/'.$Item) and ($Item != '.') and ($Item != '..') and ($Item != '.svn'))
    110110          {             
    111111                include_once($Directory.'/'.$Item.'/'.$Item.'.php');
  • trunk/Common/Version.php

    r562 r563  
    11<?php
    22
    3 $Revision = 562; // Subversion revision
     3$Revision = 563; // Subversion revision
    44$DatabaseRevision = 551; // SQL structure revision
    55$ReleaseTime = '2013-08-10';
  • trunk/Modules/EmailQueue/EmailQueue.php

    r553 r563  
    99  function Show()
    1010  {
    11     $Output = $this->System->EmailQueue->Process();
     11    $Output = $this->System->ModuleManager->Modules['EmailQueue']->Process();
    1212    $Output = $this->SystemMessage('Zpracování fronty emailů', 'Nové emaily byly odeslány').$Output;
    1313    return($Output);
Note: See TracChangeset for help on using the changeset viewer.