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


Ignore:
Timestamp:
May 13, 2008 4:14:53 AM (16 years ago)
Author:
quinn
Message:

Fixed lots of misplings. I'm so embarrassed! ;P

File:
1 edited

Legend:

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

    r247 r334  
    148148        $this->_connected = true;
    149149
    150         // Tell MySQL what character set we're useing. Available only on MySQL verions > 4.01.01.
     150        // Tell MySQL what character set we're using. Available only on MySQL versions > 4.01.01.
    151151        if ('' != $app->getParam('character_set') && isset($this->mysql_character_sets[mb_strtolower($app->getParam('character_set'))])) {
    152152            $this->query("/*!40101 SET NAMES '" . $this->mysql_character_sets[mb_strtolower($app->getParam('character_set'))] . "' */");
     
    284284     * Loads a list of tables in the current database into an array, and returns
    285285     * true if the requested table is found. Use this function to enable/disable
    286      * funtionality based upon the current available db tables or to dynamically
     286     * functionality based upon the current available db tables or to dynamically
    287287     * create tables if missing.
    288288     *
Note: See TracChangeset for help on using the changeset viewer.