##############################################################
## MOD Title: UPDATE Smilies Album
## MOD Author: OXPUS <
webmaster@oxpus.de > (Karsten Ude)
http://www.oxpus.de
## MOD Description: Update Smilies Album from 1.0.x to 1.1.0
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 1-2 minutes
## Files To Edit: n/a
##
## Included Files: n/a
##############################################################
## For Security Purposes, Please Check:
http://www.phpbb.com/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at:
http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## Instead entering the given SQL-Statement, you can upload the file
## sp_db_update_110.php to your phpbb root directory and run this with your browser.
## This file will do all nessassary changes in the database for you.
## After using this file, please delete it to avoid errors.
##
##############################################################
## MOD History:
##
## 2004-02-14 - Version 1.0.0
## - First release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ SQL ]-------------------------------------------------------
#
CREATE TABLE `phpbb_ueffeln_forumsmilies_config` (
`config_name` varchar(255) NOT NULL default '',
`config_value` varchar(255) NOT NULL default '',
PRIMARY KEY (`config_name`)
) TYPE=MyISAM;
INSERT INTO phpbb_ueffeln_forumsmilies_config (config_name, config_value) VALUES ('max_file_size', 50000);
INSERT INTO phpbb_ueffeln_forumsmilies_config (config_name, config_value) VALUES ('cols_per_page', 10);
INSERT INTO phpbb_ueffeln_forumsmilies_config (config_name, config_value) VALUES ('rows_per_page', 10);
INSERT INTO phpbb_ueffeln_forumsmilies_config (config_name, config_value) VALUES ('access_level', 0);
INSERT INTO phpbb_ueffeln_forumsmilies_config (config_name, config_value) VALUES ('version', '1.1.0');
#
#-----[ COPY ]-------------------------------------------------------
#
copy smilies.php to smilies.php
copy smilies_upload.php to smilies_upload.php
copy admin/admin_smilies_config.php to admin/admin_smilies_config.php
copy language/lang_english/lang_admin_smilies.php to language/lang_english/lang_admin_smilies.php
copy language/lang_german/lang_admin_smilies.php to language/lang_german/lang_admin_smilies.php
copy templates/subSilver/smilies_cat_body.tpl to templates/subSilver/smilies_cat_body.tpl
copy templates/subSilver/admin/smilies_config_body.tpl to templates/subSilver/admin/smilies_config_body.tpl
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM