Show
Ignore:
Timestamp:
06/04/08 01:37:02 (6 months ago)
Author:
rats
Message:

* Updated net2ftp to version 0.97
* Updated SquirrelMail to version 1.4.15

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gui/tools/filemanager/modules/upload/upload.inc.php

    r1163 r1198  
    33//   ------------------------------------------------------------------------------- 
    44//  |                  net2ftp: a web based FTP client                              | 
    5 //  |              Copyright (c) 2003-2007 by David Gartner                         | 
     5//  |              Copyright (c) 2003-2008 by David Gartner                         | 
    66//  |                                                                               | 
    77//  | This program is free software; you can redistribute it and/or                 | 
     
    125125// **                                                                                  ** 
    126126 
    127 function net2ftp_module_printBodyonload() { 
     127function net2ftp_module_printBodyOnload() { 
    128128 
    129129// -------------- 
     
    134134//      echo ""; 
    135135 
    136 } // end net2ftp_printBodyonload 
     136} // end net2ftp_printBodyOnload 
    137137 
    138138// **                                                                                  ** 
     
    187187        } 
    188188 
    189 // Upload via SWFUpload Flash applet 
     189// Upload via SWFUpload Flash applet or using the OpenLaszlo skin 
    190190        if (isset($_FILES["Filedata"]) == true && is_array($_FILES["Filedata"]) == true) { 
    191191                $file_counter = $file_counter + 1; 
     
    287287// Print the output 
    288288// ------------------------------------------------------------------------- 
    289         require_once($net2ftp_globals["application_skinsdir"] . "/" . $net2ftp_globals["skin"] . "/manage.template.php"); 
     289        if ($net2ftp_globals["skin"] == "openlaszlo") { 
     290                require_once($net2ftp_globals["application_skinsdir"] . "/" . $net2ftp_globals["skin"] . "/manage.html.template.php"); 
     291        } 
     292        else { 
     293                require_once($net2ftp_globals["application_skinsdir"] . "/" . $net2ftp_globals["skin"] . "/manage.template.php"); 
     294        } 
    290295 
    291296} // End net2ftp_printBody