Changeset 4064
- Timestamp:
- 07/29/06 01:38:27 (2 years ago)
- Files:
-
- branches/2.0/wp-includes/wp-db.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/wp-db.php
r4060 r4064 94 94 array ('query' => $this->last_query, 'error_str' => $str); 95 95 96 $str = wp_specialchars($str, 1);97 $query = wp_specialchars($this->last_query, 1);96 $str = htmlspecialchars($str, 1); 97 $query = htmlspecialchars($this->last_query, 1); 98 98 // Is error output turned on or not.. 99 99 if ( $this->show_errors ) {
