# HG changeset patch # User Dan # Date 1203369262 18000 # Node ID e7ad98914d065c2cd6858c7a8329d2bc7b4c0517 # Parent fa51b1b5eae6d820ca62450e8549bab08f690daf# Parent f5718d7c2a6aa79a505268ff40cb42706c588ee3 Merging Nighthawk and Scribus branches diff -r f5718d7c2a6a -r e7ad98914d06 includes/dbal.php --- a/includes/dbal.php Sun Feb 17 20:19:17 2008 -0500 +++ b/includes/dbal.php Mon Feb 18 16:14:22 2008 -0500 @@ -41,6 +41,8 @@ function enable_errorhandler() { + if ( !defined('ENANO_DEBUG') ) + return true; // echo "DBAL: enabling error handler
"; if ( function_exists('debug_backtrace') ) { @@ -50,6 +52,8 @@ function disable_errorhandler() { + if ( !defined('ENANO_DEBUG') ) + return true; // echo "DBAL: disabling error handler
"; if ( $this->errhandler ) { @@ -210,9 +214,10 @@ return true; } - function sql_query($q) + function sql_query($q, $log_query = true) { - $this->enable_errorhandler(); + if ( $log_query || defined('ENANO_DEBUG') ) + $this->enable_errorhandler(); if ( $this->debug && function_exists('debug_backtrace') ) { @@ -233,34 +238,48 @@ } $this->num_queries++; - $this->query_backtrace[] = $q; - $this->latest_query = $q; + if ( $log_query || defined('ENANO_DEBUG') ) + { + $this->query_backtrace[] = $q; + $this->latest_query = $q; + } // First make sure we have a connection if ( !$this->_conn ) { $this->_die('A database connection has not yet been established.'); } + // Start the timer + if ( $log_query || defined('ENANO_DEBUG') ) + $time_start = microtime_float(); // Does this query look malicious? - if ( !$this->check_query($q) ) + if ( $log_query || defined('ENANO_DEBUG') ) { - $this->report_query($q); - grinding_halt('SQL Injection attempt', '

Enano has caught and prevented an SQL injection attempt. Your IP address has been recorded and the administrator has been notified.

Query was:

'.htmlspecialchars($q).'
'); + if ( !$this->check_query($q) ) + { + $this->report_query($q); + grinding_halt('SQL Injection attempt', '

Enano has caught and prevented an SQL injection attempt. Your IP address has been recorded and the administrator has been notified.

Query was:

'.htmlspecialchars($q).'
'); + } } - $time_start = microtime_float(); $r = mysql_query($q, $this->_conn); - $this->query_times[$q] = microtime_float() - $time_start; + + if ( $log_query ) + $this->query_times[$q] = microtime_float() - $time_start; + $this->latest_result = $r; - $this->disable_errorhandler(); + + if ( $log_query ) + $this->disable_errorhandler(); return $r; } - function sql_unbuffered_query($q) + function sql_unbuffered_query($q, $log_query = true) { $this->enable_errorhandler(); $this->num_queries++; - $this->query_backtrace[] = '(UNBUFFERED) ' . $q; + if ( $log_query || defined('ENANO_DEBUG') ) + $this->query_backtrace[] = '(UNBUFFERED) ' . $q; $this->latest_query = $q; // First make sure we have a connection if ( !$this->_conn ) diff -r f5718d7c2a6a -r e7ad98914d06 includes/functions.php --- a/includes/functions.php Sun Feb 17 20:19:17 2008 -0500 +++ b/includes/functions.php Mon Feb 18 16:14:22 2008 -0500 @@ -4024,8 +4024,13 @@ $_profiler[] = array( 'point' => 'Profiling started', 'time' => microtime_float(), - 'backtrace' => false + 'backtrace' => false, + 'mem' => false ); + if ( function_exists('memory_get_usage') ) + { + $_profiler[ count($_profiler) - 1 ]['mem'] = memory_get_usage(); + } } /** @@ -4048,8 +4053,13 @@ $_profiler[] = array( 'point' => $point, 'time' => microtime_float(), - 'backtrace' => $backtrace + 'backtrace' => $backtrace, + 'mem' => false ); + if ( function_exists('memory_get_usage') ) + { + $_profiler[ count($_profiler) - 1 ]['mem'] = memory_get_usage(); + } } /** @@ -4114,6 +4124,14 @@ $html .= '' . "\n"; } + if ( $entry['mem'] ) + { + $html .= '' . "\n"; + $html .= ' Total mem usage:' . "\n"; + $html .= ' ' . htmlspecialchars($entry['mem']) . ' (bytes)' . "\n"; + $html .= '' . "\n"; + } + $html .= "\n"; $time_last = $entry['time']; diff -r f5718d7c2a6a -r e7ad98914d06 includes/pageutils.php diff -r f5718d7c2a6a -r e7ad98914d06 includes/sessions.php --- a/includes/sessions.php Sun Feb 17 20:19:17 2008 -0500 +++ b/includes/sessions.php Mon Feb 18 16:14:22 2008 -0500 @@ -1624,7 +1624,7 @@ { while ( list($reason_temp, $ban_value, $ban_type, $is_regex) = $db->fetchrow_num() ) { - if ( $ban_type == BAN_IP && $row['is_regex'] != 1 ) + if ( $ban_type == BAN_IP && $is_regex != 1 ) { // check range $regexp = parse_ip_range_regex($ban_value); diff -r f5718d7c2a6a -r e7ad98914d06 language/english/admin.json diff -r f5718d7c2a6a -r e7ad98914d06 language/english/core.json diff -r f5718d7c2a6a -r e7ad98914d06 language/english/user.json diff -r f5718d7c2a6a -r e7ad98914d06 plugins/PrivateMessages.php diff -r f5718d7c2a6a -r e7ad98914d06 plugins/SpecialAdmin.php diff -r f5718d7c2a6a -r e7ad98914d06 plugins/SpecialGroups.php