Changeset 2996:5da76c6b9aad for plugins/antispam
- Timestamp:
- 04/21/15 10:39:44 (10 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/antispam/filters/class.dc.filter.words.php
r2987 r2996 218 218 } 219 219 220 $rs = $this->con->select('SELECT MAX(rule_id) FROM '.$this->table);221 $id = (integer) $rs ->f(0) + 1;220 $rs_max = $this->con->select('SELECT MAX(rule_id) FROM '.$this->table); 221 $id = (integer) $rs_max->f(0) + 1; 222 222 223 223 $cur = $this->con->openCursor($this->table);
Note: See TracChangeset
for help on using the changeset viewer.