Changeset 50 for trunk/includes


Ignore:
Timestamp:
Jan 30, 2009, 11:31:01 PM (16 years ago)
Author:
george
Message:
  • Opraveno: Správné zobrazování kódování znaků v jiných prohlížečích než firefox.
  • Upraveno: XHTML 1.0 a grafický styl okna Slovníček.
  • Opraveno: Chybné formulářové odkazy při zobrazování seznamu překladů.
Location:
trunk/includes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/config.sample.php

    r49 r50  
    1717    'BaseURL' => 'http://localhost/',
    1818        'AdminEmail' => 'admin@localhost',
     19        'ShowSQLError' => false,
    1920  ),
    2021);
  • trunk/includes/databaseconection.php

    r49 r50  
    2121  function SQLCommand($Command)
    2222  {
     23        global $Config;
     24       
    2325    $ReturnCommand = mysql_query($Command, $this->id_connection);
    24         if(mysql_error() != '') echo('<div>'.mysql_error().'<br>'.$Command.'</div>');
     26        if((mysql_error() != '') and ($Config['Web']['ShowSQLErrors'])) echo('<div>'.mysql_error().'<br>'.$Command.'</div>');
    2527    return($ReturnCommand);
    2628  }
  • trunk/includes/global.php

    r49 r50  
    138138<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    139139<head>
     140<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    140141<link rel="stylesheet" href="'.$Config['Web']['BaseURL'].'style.css" type="text/css" media="all" />
    141142<script type="text/javascript" src="'.$Config['Web']['BaseURL'].'global.js"></script>
Note: See TracChangeset for help on using the changeset viewer.