HomeHelpTrac

Ignore:
Timestamp:
01/20/09 05:17:52 (3 years ago)
Author:
Alexander Ermashev
Message:

List of changes

  • Correct the per_page_step condition into "inc/classes/BxDolPaginate.php";
  • Set up the per page step into "templates/scripts/classes/BxBaseBrowse.php";
  • Change the greet.php (add the code that send message also into member's site personal mailbox );
  • Fix member's actions window size into mailbox ;
  • add new sql query into "periodic/cmd.php" that will delete all trashed messages ;
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/communicator.php

    r8612 r8652  
    9393 
    9494        case 'delete_hotlisted' : 
    95             $oCommunicator -> execFunction( 'DeleteFromHotList', $aRowsList ); 
     95            $oCommunicator -> execFunction( 'DeleteHotList', $aRowsList ); 
    9696        break; 
    9797 
    9898        case 'add_hotlist' : 
    99             $oCommunicator -> execFunction( 'AddToHotList', $aRowsList ); 
     99            $oCommunicator -> execFunction( 'AddHotList', $aRowsList ); 
     100        break; 
     101 
     102        case 'delete_greetings' : 
     103            if ( $aCommunicatorSettings['person_switcher'] == 'from' ) 
     104            { 
     105                $oCommunicator -> execFunction( 'DeleteGreeting', $aRowsList, array(1) ); 
     106            } 
     107            else 
     108            { 
     109                $oCommunicator -> execFunction( 'DeleteGreeting', $aRowsList ); 
     110            } 
    100111        break; 
    101112    } 
Note: See TracChangeset for help on using the changeset viewer.