+ Moved ACP link from footer to header

+ Added PMs limits
+ Replaced ACP frames to original DSF layout
> Version 9.6.25 released.

git-svn-id: https://svn.pioder.pl/uf-svn/uF@33 72ec579a-5ced-4fa4-82f3-afba5d98df2f
This commit is contained in:
pioder
2009-06-25 19:50:28 +00:00
parent 93e5cae6f0
commit 92e90cd55f
33 changed files with 242 additions and 255 deletions

View File

@@ -104,7 +104,9 @@ INSERT INTO `uf_config` VALUES ('sig_len', '300');
INSERT INTO `uf_config` VALUES ('time_antiflood', '30');
INSERT INTO `uf_config` VALUES ('tables_width', '900');
INSERT INTO `uf_config` VALUES ('newpasswd_len', '6');
INSERT INTO `uf_config` VALUES ('posts', '1');
INSERT INTO `uf_config` VALUES ('pm_inbox_max', '10');
INSERT INTO `uf_config` VALUES ('pm_sentbox_max', '10');
#----------------------------------------------------
@@ -118,6 +120,8 @@ CREATE TABLE `uf_forums` (
`moderate` int(11) NOT NULL default '0',
`name` varchar(30) NOT NULL default '',
`desc` text NOT NULL,
`posts` mediumint(8) NOT NULL,
`lastpost` varchar(255) NOT NULL,
`c_id` int(8) NOT NULL default '0',
`sort` mediumint(8) NOT NULL default '0',
PRIMARY KEY (`f_id`)
@@ -126,7 +130,7 @@ CREATE TABLE `uf_forums` (
#-
#- Table structure for `uf_forums`
#-
INSERT INTO `uf_forums` VALUES (1, 0, 0, 'Testowe Forum', 'Pierwsze testowe forum skryptu Dynamic Script Forum.', 1, 1);
INSERT INTO `uf_forums` VALUES (1, 0, 0, 'Testowe Forum', 'Pierwsze testowe forum skryptu Dynamic Script Forum.', 1, '1:1:1:1181666444:2:Admin', 1, 1);
#----------------------------------------------------
@@ -311,6 +315,8 @@ CREATE TABLE `uf_topics` (
`name` varchar(100) NOT NULL default '',
`author` mediumint(8) NOT NULL default '0',
`lastpost_time` int(1) NOT NULL,
`posts` mediumint(8) NOT NULL,
`lastpost` varchar(255) NOT NULL,
PRIMARY KEY (`t_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@@ -318,7 +324,7 @@ CREATE TABLE `uf_topics` (
#- Table structure for `uf_topics`
#-
INSERT INTO `uf_topics` VALUES (1, 1, 0, 0, 'Witamy na forum uf', 1,0);
INSERT INTO `uf_topics` VALUES (1, 1, 0, 0, 'Witamy na forum uf', 1, 0, 2, '1:1:0:2:Admin');
#----------------------------------------------------