backdrop-contrib / honeypot

Backdrop port of Drupal module. Uses both the honeypot and timestamp methods of deterring spam bots from completing forms on your site.
GNU General Public License v2.0
3 stars 1 forks source link

Corrected schema version to 1001 #8

Closed CybersecDan closed 8 years ago

CybersecDan commented 8 years ago

Hope this works :)

klonos commented 8 years ago

For sites that have already installed either 1.0.1 or 1.0.2, the schema_version in the system table is still 2001, so 1001 (anything bellow 2001 actually) will never fire. Not sure how to fix this.

klonos commented 8 years ago

...to fix it manually of course, one can edit their db and change the schema_version for honeypot to 1000. That will trigger the 1001 update and any subsequent ones.

CybersecDan commented 8 years ago

That makes sense. Good catch. I appreciate the explanation.