##############################################################
## Title: phpBB 3.0.4 to phpBB 3.0.5 prosilver Changes
## Author: Acyd Burn < N/A > (Meik Sievertsen) N/A
## Description:
##
## These are the phpBB 3.0.4 to phpBB 3.0.5 prosilver Changes summed up into a
## little Mod. These changes are only partial and do not include any code changes,
## therefore not meant for updating phpBB.
##
##
## Files To Edit:
## styles/prosilver/imageset/imageset.cfg
## styles/prosilver/style.cfg
## styles/prosilver/template/attachment.html
## styles/prosilver/template/editor.js
## styles/prosilver/template/forum_fn.js
## styles/prosilver/template/mcp_notes_user.html
## styles/prosilver/template/mcp_topic.html
## styles/prosilver/template/mcp_warn_user.html
## styles/prosilver/template/memberlist_body.html
## styles/prosilver/template/overall_header.html
## styles/prosilver/template/posting_buttons.html
## styles/prosilver/template/posting_editor.html
## styles/prosilver/template/posting_review.html
## styles/prosilver/template/posting_topic_review.html
## styles/prosilver/template/simple_header.html
## styles/prosilver/template/template.cfg
## styles/prosilver/template/ucp_main_bookmarks.html
## styles/prosilver/template/ucp_main_subscribed.html
## styles/prosilver/template/ucp_pm_viewmessage.html
## styles/prosilver/template/ucp_register.html
## styles/prosilver/template/viewforum_body.html
## styles/prosilver/template/viewtopic_body.html
## styles/prosilver/template/viewtopic_print.html
## styles/prosilver/theme/bidi.css
## styles/prosilver/theme/colours.css
## styles/prosilver/theme/common.css
## styles/prosilver/theme/content.css
## styles/prosilver/theme/links.css
## styles/prosilver/theme/theme.cfg
## styles/prosilver/theme/tweaks.css
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/imageset/imageset.cfg
#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.4
#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.5
#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/style.cfg
#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.4
#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.5
#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/template/attachment.html
#
#-----[ FIND ]---------------------------------------------
# Around Line 59
#
#-----[ REPLACE WITH ]---------------------------------------------
#
#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/template/editor.js
#
#-----[ FIND ]---------------------------------------------
# Around Line 19
onload_functions.push('initInsertions()');
#
#-----[ REPLACE WITH ]---------------------------------------------
# Just remove/delete the lines (replacing with an empty line) or commenting out
// onload_functions.push('initInsertions()');
#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/template/forum_fn.js
#
#-----[ FIND ]---------------------------------------------
# Around Line 21
if (page !== null && !isNaN(page) && page > 0)
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
#
#-----[ REPLACE WITH ]---------------------------------------------
#
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
{
if (base_url.indexOf('?') == -1)
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}
else
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
#
#-----[ FIND ]---------------------------------------------
# Around Line 205
s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
}
// Firefox and Opera
else
{
#
#-----[ AFTER, ADD ]---------------------------------------------
#
// workaround for bug # 42885
if (window.opera && e.innerHTML.substring(e.innerHTML.length - 4) == '
')
{
e.innerHTML = e.innerHTML + ' ';
}
#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/template/mcp_notes_user.html
#
#-----[ FIND ]---------------------------------------------
# Around Line 5