Changeset 2857 for trunk/filemanager


Ignore:
Timestamp:
05/26/10 09:14:03 (14 years ago)
Author:
amuller
Message:

Ticket #1086 - Corrigindo caminho de inclusão do rsa.inc.php

Location:
trunk/filemanager/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/filemanager/inc/class.uifilemanager.inc.php

    r2851 r2857  
    732732                function removedir() 
    733733                { 
    734                         require_once('phpgwapi/inc/class.rsa.inc.php'); 
     734                        require_once(PHPGW_INCLUDE_ROOT.'/phpgwapi/inc/class.rsa.inc.php'); 
    735735                        $rsa = new rsa();                        
    736736                        $toRemove = $rsa->decode($this->path); 
  • trunk/filemanager/inc/class.vfs_functions.inc.php

    r2851 r2857  
    274274                        $zipFilePath=ini_get("session.save_path")."/".$zipFileName; 
    275275                        $command = $zipFilePath.$command; 
    276                         require_once('phpgwapi/inc/class.rsa.inc.php'); 
     276                        require_once(PHPGW_INCLUDE_ROOT.'/phpgwapi/inc/class.rsa.inc.php'); 
    277277                        $rsa = new rsa(); 
    278278 
     
    304304                function unarchive(){ 
    305305                        $command = escapeshellarg($this->file); 
    306                         require_once('phpgwapi/inc/class.rsa.inc.php'); 
     306                        require_once(PHPGW_INCLUDE_ROOT.'/phpgwapi/inc/class.rsa.inc.php'); 
    307307                        $rsa = new rsa(); 
    308308 
Note: See TracChangeset for help on using the changeset viewer.