Changeset 6238 for trunk/wp-includes/wp-db.php
- Timestamp:
- 10/13/2007 12:54:26 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/wp-db.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r6236 r6238 257 257 * @return mixed results of $this->query() 258 258 */ 259 function db_insert($table, $data) {259 function insert($table, $data) { 260 260 $data = add_magic_quotes($data); 261 261 $fields = array_keys($data); … … 271 271 * @return mixed results of $this->query() 272 272 */ 273 function db_update($table, $data, $where_col, $where_val){273 function update($table, $data, $where_col, $where_val){ 274 274 $data = add_magic_quotes($data); 275 275 $bits = array();
Note: See TracChangeset
for help on using the changeset viewer.