Changeset 479 for trunk/lib/DB.inc.php


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/DB.inc.php

    r478 r479  
    101101    public function setParam($params)
    102102    {
    103         $app =& App::getInstance();
     103        $app =& App::getInstance();
    104104
    105105        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)) {
     
    139139    public function connect()
    140140    {
    141         $app =& App::getInstance();
     141        $app =& App::getInstance();
    142142
    143143        if (!$this->getParam('db_name') || !$this->getParam('db_user') || !$this->getParam('db_pass')) {
     
    339339    public function tableExists($table, $use_cached_results=true)
    340340    {
    341         $app =& App::getInstance();
     341        $app =& App::getInstance();
    342342
    343343        if (!$this->_connected) {
Note: See TracChangeset for help on using the changeset viewer.