Code: Select all
SQL ERROR [ mysql4 ]
Unknown column 'user_display_quick_topic' in 'field list' [1054]
SQL
UPDATE phpbbrc1_users SET user_allow_pm = 1, user_allow_viewemail = 1, user_allow_massemail = 1, user_allow_viewonline = 1, user_notify_type = '0', user_notify_pm = 1, user_options = '895', user_dst = 1, user_dateformat = 'D M d, Y g:i a', user_lang = 'en', user_timezone = -5, user_style = '1', user_display_quick_topic = 0, user_display_quick_reply = 0 WHERE user_id = 2
BACKTRACE
FILE: includes/db/mysql.php
LINE: 133
CALL: dbal->sql_error()
FILE: includes/ucp/ucp_prefs.php
LINE: 87
CALL: dbal_mysql->sql_query()
FILE: includes/functions_module.php
LINE: 460
CALL: ucp_prefs->main()
FILE: ucp.php
LINE: 310
CALL: p_master->load_active()
Code: Select all
INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_quick_topic', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_quick_reply', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_quick_reply_title', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_quick_post_options', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_quick_post_icons', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_quick_post_smilies', 1);
ALTER TABLE phpbb_users ADD user_display_quick_topic tinyint(1) UNSIGNED DEFAULT 1 NOT NULL;
ALTER TABLE phpbb_users ADD user_display_quick_reply tinyint(1) UNSIGNED DEFAULT 1 NOT NULL;
If you want, you can give Quick Posting's div bigger margin-top. I didn't do it, because I think that it looks well.oddfish wrote:Quick post area is overlapped by quick-mod tools in viewing post.
error in install or not spaced sufficiently to include the additional area under the jump-box?
Probably it's a bug - I haven't tested it on all possible configurations. I will check it, and if so, I will release new version.nl2dav wrote:But when I disable icons the smilies disappear also
I know that you were using stable versions, but nobody has tested beta/RC versionsHighway of Life wrote:What you mean nobody tested them/it?![]()
Your QR topic is one of the longest running topics on STG.-- very active, one of the first phpBB3 MODs, and therefore has been in development a long time, and used by many already.
Quick Posting MOD 3.0 language variables will be moved to language/xx/mods/quick_posting.php, so it will modify smaller number of files. It will also contain install.php file, that will do everything on the DB.Highway of Life wrote:My main complaints:
- Modifies too many core files, -- could slim down even more.
- Should auto-install
Reasons:
- Better use with the Database abstraction layer
- Support for Firebird, postgres and Oracle databases.
- Proper table prefixes.
- Easier, less error-prone installation.
Code: Select all
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
Code: Select all
<a onclick="insert_text('{smiley.A_SMILEY_CODE}', true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" /></a>