Changeset 187 for trunk/database.php


Ignore:
Timestamp:
Apr 5, 2009, 3:54:46 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Možnost registrace podsítí pro klienty.
  • Upraveno: Skripty pro generování nastavení routerů byly upraveny pro podporu tabulky NetworkSubnet.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/database.php

    r153 r187  
    1616        $Result = parent::query($Query);
    1717    if(($this->error != '') and ($Config['Web']['ShowSQLError'] == true))
    18           echo('<div><strong>SQL Error: </strong>'.$this->error.'<br>'.$Query.'</div>');
     18          echo('<div><strong>SQL Error: </strong>'.$this->error.'<br />'.$Query.'</div>');
    1919
    2020    return($Result); 
     
    5555            $Value = strtr($Value, '"', '\"');
    5656      if($Value != 'NOW()') $Value = "'".$Value."'";
    57       $Values .= ", ".$Key."=".$Value;
     57      $Values .= ', '.$Key.'='.$Value;
    5858    }
    5959    $Values = substr($Values, 2); 
     
    6969      $Value = strtr($Value, '"', '\"');
    7070      $Name .= ',`'.$Key.'`';
    71       if($Value == 'NOW()') $Values .= ",".$Value;
     71      if($Value == 'NOW()') $Values .= ','.$Value;
    7272        else $Values .= ',"'.$Value.'"';
    7373    }
    7474    $Name = substr($Name, 1);
    7575    $Values = substr($Values, 1);
    76     //echo('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES ('.$Values.')<br>');
     76    //echo('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES ('.$Values.')<br />');
    7777    $this->query('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')');
    7878    //echo($this->error().'<br>');
     
    8383    $this->query('SET NAMES "'.$Charset.'"');
    8484  }
    85 
    8685}
    8786
Note: See TracChangeset for help on using the changeset viewer.