Ignore:
Timestamp:
May 3, 2014 11:09:03 PM (10 years ago)
Author:
anonymous
Message:

Convert tabs to spaces, and lineendings to LF in all files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Upload.inc.php

    r478 r479  
    7676    public function setParam($params)
    7777    {
    78         $app =& App::getInstance();
     78        $app =& App::getInstance();
    7979
    8080        if (isset($params) && is_array($params)) {
     
    120120    public function getParam($param)
    121121    {
    122         $app =& App::getInstance();
     122        $app =& App::getInstance();
    123123
    124124        if (array_key_exists($param, $this->_params)) {
     
    146146    public function process($form_name, $custom_file_name=null)
    147147    {
    148         $app =& App::getInstance();
     148        $app =& App::getInstance();
    149149
    150150        // Ensure we have a upload directory.
     
    353353    public function deleteFile($file_name, $use_glob=false)
    354354    {
    355         $app =& App::getInstance();
     355        $app =& App::getInstance();
    356356
    357357        // Ensure we have a upload directory.
     
    386386    public function moveFile($old_name, $new_name)
    387387    {
    388         $app =& App::getInstance();
     388        $app =& App::getInstance();
    389389
    390390        // Ensure we have an upload directory.
     
    421421    public function exists($file_name)
    422422    {
    423         $app =& App::getInstance();
     423        $app =& App::getInstance();
    424424
    425425        // Ensure we have a upload directory.
     
    518518    public function _raiseMsg($message, $type, $file, $line)
    519519    {
    520         $app =& App::getInstance();
     520        $app =& App::getInstance();
    521521
    522522        if ($this->getParam('display_messages') === true || (is_int($this->getParam('display_messages')) && $this->getParam('display_messages') & $type > 0)) {
Note: See TracChangeset for help on using the changeset viewer.