Ignore:
Timestamp:
Mar 13, 2008, 8:18:42 PM (17 years ago)
Author:
george
Message:

Aktualizace na minimanager 0.1.6g.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/scripts/db_layer/mysql.php

    r19 r307  
    2323                if ($pconnect) $this->link_id = @mysql_pconnect($db_host, $db_username, $db_password);
    2424                else $this->link_id = @mysql_connect($db_host, $db_username, $db_password, $newlink);
    25                
     25
    2626                if ($this->link_id){
    2727                        if($db_name){
     
    6060                return ($query_id) ? @mysql_fetch_row($query_id) : false;
    6161        }
    62        
     62
    6363        function fetch_array($query_id = 0){
    6464                return ($query_id) ? @mysql_fetch_array($query_id) : false;
     
    6868                return ($query_id) ? @mysql_fetch_assoc($query_id) : false;
    6969        }
    70        
     70
    7171        function num_rows($query_id = 0){
    7272                return ($query_id) ? @mysql_num_rows($query_id) : false;
    7373        }
    74        
     74
    7575        function num_fields($query_id = 0){
    7676                return ($query_id) ? @mysql_num_fields($query_id) : false;
     
    100100                return ($query_id) ? @mysql_field_name($query_id,$field_offset) : false;
    101101        }
    102        
     102
    103103        function quote_smart($value){
    104104        if( is_array($value) ) {
    105                 return array_map( array('SQL','quote_smart') , $value);
     105                return array_map( array(&$this,'quote_smart') , $value);
    106106        } else {
    107107                if( get_magic_quotes_gpc() ) $value = stripslashes($value);
     
    116116                return mysql_error();
    117117        }
    118        
     118
    119119        function close(){
    120120                global $tot_queries;
     
    125125                } else return false;
    126126        }
    127        
     127
    128128        function start_transaction(){
    129129                return;
Note: See TracChangeset for help on using the changeset viewer.