Changeset 2010


Ignore:
Timestamp:
02/12/10 10:37:54 (14 years ago)
Author:
fpcorrea
Message:

Ticket #000 - Apagando codigo de teste e arrumando pequenos bugs

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/TreeS.js

    r1477 r2010  
    1212        treeS.prototype.make_Window = function(){        
    1313                _this = this; 
    14                 connector.loadScript("TreeShow"); 
     14                expresso.connector.loadScript("TreeShow"); 
    1515                var title = ':: '+get_lang("Manager your folders and export messages")+' ::'; 
    1616                tree                              = document.createElement("DIV"); 
  • trunk/filemanager/inc/class.uifilemanager.inc.php

    r2007 r2010  
    554554 
    555555                        } 
    556                         // TODO Order files directly into SQL 
    557                         /*foreach ($output as $key => $row) { 
    558                                 $temp[$key]  = strtoupper($row[$this->criteria]); 
    559                         } 
    560                         if ($this->otype == "1") 
    561                                 array_multisort($temp, SORT_ASC, $output); 
    562                         else 
    563                                 array_multisort($temp, SORT_DESC, $output);*/ 
    564556                        $return['files'] = $output; 
    565557                        $return['quota']['quotaSize'] = ($quota*1024*1024); 
     
    711703                        else 
    712704                        { 
    713                                 /*$this->limit = $this->limit ? $this->limit : 0; 
    714                                 $this->offset = $this->offset ? $this->offset : 100;*/ 
    715705                                $ls_array = $this->bo->vfs->ls(array( 
    716706                                        'string' => $this->path, 
  • trunk/filemanager/js/draw_api.js

    r2007 r2010  
    154154 
    155155        loadPreferences(); 
    156         filesperpage = preferences.files_per_page;  
     156        preferences.files_per_page = (preferences.files_per_page != undefined) ? preferences.files_per_page : 10; 
    157157        offset = (current_page-1)*preferences.files_per_page; 
    158158 
Note: See TracChangeset for help on using the changeset viewer.