Active
Project:
Custom Pagers
Version:
5.x-1.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Oct 2007 at 05:21 UTC
Updated:
10 Feb 2008 at 11:50 UTC
the create table script is wrong, mysql does not allow default values on text fields.
changed it manually and executed in mysql administrator
the script is
CREATE TABLE custom_pager ( pid int unsigned NOT NULL auto_increment,
title varchar(255) NOT NULL default '',
list_php text NOT NULL,
view varchar(255) NOT NULL default '',
args varchar(255) NOT NULL default '', position varchar(16) NOT NULL default 'bottom', visibility_php text NOT NULL,
node_type varchar(255) default '', reverse_list tinyint NOT NULL default 1, cache_list tinyint NOT NULL default 1,
PRIMARY KEY (pid) ) /*!40100 DEFAULT CHARACTER SET UTF8 */
Comments
Comment #1
eaton commentedFixed in the new 1.9 release. thanks!
Comment #2
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
snerky commentedI was getting the same problems with the 1.9 release just yesterday.
I fixed it today using the SQL script above.