Index: branches/unlabeled/unlabeled-1.3.2/core/install/install_data.sql
===================================================================
diff -u -r6787 -r6915
--- branches/unlabeled/unlabeled-1.3.2/core/install/install_data.sql (.../install_data.sql) (revision 6787)
+++ branches/unlabeled/unlabeled-1.3.2/core/install/install_data.sql (.../install_data.sql) (revision 6915)
@@ -549,3 +549,7 @@
INSERT INTO StdDestinations VALUES (306, 2, 225, 'la_state_AL', 'AL', NULL);
INSERT INTO PermCache (CategoryId, PermId, ACL) VALUES (0, 1, '11,12,13,14,15');
+
+INSERT INTO Permissions VALUES (0, 'LOGIN', 13, 1, 1, 0);
+INSERT INTO Permissions VALUES (0, 'LOGIN', 11, 1, 1, 0);
+INSERT INTO Permissions VALUES (0, 'ADMIN', 11, 1, 1, 0);
\ No newline at end of file
Index: branches/unlabeled/unlabeled-1.3.2/core/install/install_schema.sql
===================================================================
diff -u -r6912 -r6915
--- branches/unlabeled/unlabeled-1.3.2/core/install/install_schema.sql (.../install_schema.sql) (revision 6912)
+++ branches/unlabeled/unlabeled-1.3.2/core/install/install_schema.sql (.../install_schema.sql) (revision 6915)
@@ -3,6 +3,17 @@
# ALTER TABLE ThemeFiles ADD FileFound TINYINT UNSIGNED NOT NULL DEFAULT '0';
# ALTER TABLE ThemeFiles ADD INDEX (FileFound);
+CREATE TABLE Permissions (
+ PermissionId int(11) NOT NULL auto_increment,
+ Permission varchar(255) NOT NULL default '',
+ GroupId int(11) default '0',
+ PermissionValue int(11) NOT NULL default '0',
+ `Type` tinyint(4) NOT NULL default '0',
+ CatId int(11) NOT NULL default '0',
+ PRIMARY KEY (PermissionId),
+ UNIQUE KEY PermIndex (Permission,GroupId,CatId,`Type`)
+);
+
CREATE TABLE CustomField (
CustomFieldId int(11) NOT NULL auto_increment,
Type int(11) NOT NULL default '0',
Index: branches/unlabeled/unlabeled-1.4.2/core/admin_templates/incs/form_blocks.tpl
===================================================================
diff -u -r6894 -r6915
--- branches/unlabeled/unlabeled-1.4.2/core/admin_templates/incs/form_blocks.tpl (.../form_blocks.tpl) (revision 6894)
+++ branches/unlabeled/unlabeled-1.4.2/core/admin_templates/incs/form_blocks.tpl (.../form_blocks.tpl) (revision 6915)
@@ -100,6 +100,20 @@
">
+
+ " id="
+
+