Changeset 248


Ignore:
Timestamp:
Apr 10, 2007 1:12:19 AM (17 years ago)
Author:
quinn
Message:

Added multibyte charset function to App. Minor fixes.

Location:
trunk/lib
Files:
3 edited

Legend:

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

    r247 r248  
    218218        }
    219219
     220        // Set character set to use for multi-byte string functions.
     221        mb_internal_encoding($this->getParam('character_set'));
    220222
    221223        /**
  • trunk/lib/ScriptTimer.inc.php

    r172 r248  
    66class ScriptTimer {
    77
    8     var $time_format = '%.10s';
     8    var $time_format = '%.3f';
    99    var $_timing_start_times = array();
    1010    var $_timing_stop_times = array();
  • trunk/lib/Utilities.inc.php

    r247 r248  
    4242 * Return dump as cleaned text. Useful for dumping data into emails.
    4343 *
    44  * @param  mixed $var      Variable to dump.
     44 * @param  mixed    $var        Variable to dump.
     45 * @param  strong   $indent     A string to prepend indented lines (tab for example).
    4546 * @return string Dump of var.
    4647 */
Note: See TracChangeset for help on using the changeset viewer.