vBulletin 3.5 Beta 4 Released

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Kier
    Former Lead Developer, vBulletin
    • Sep 2000
    • 8179

    vBulletin 3.5 Beta 4 Released

    vBulletin 3.5 Beta 4

    The majority of changes made to Beta 4 are bug fixes. However, there are some additional changes of interest:
    • New paid subscription payment APIs (2checkout, Worldpay, Authorize.net)
    • Threads with posts awaiting moderation now appear with an indicator icon on forumdisplay
    • Always Moderate Group's Posts usergroup permission replaced with Follow Forum Moderation Rules permission to allow YES to be positive in line with other usergroup permissions
    • Memory leaks in inline moderation javascript controls eliminated
    As this is still a beta release, the same caveats from previous beta releases still apply:
    • Beta software is unsupported. You should install beta versions at your own risk.
    • Known issues exist within this version. You should not install beta software on production sites.
    • You should always back up your database fully before attempting to install beta software.
    • If you choose to install this version, you should be aware that we plan to release new beta versions in rapid succession as bugs are fixed and holes are plugged. Do not install this beta version if you are not willing or able to keep up-to-date with new releases.
    • ImpEx does not support the 3.5 code yet, and will not support it until the release of 3.5.0 (stable).
    Javascript Issues
    Beta 4 contains changes to various javascript systems so you may need to warn your users that they should expect to have to empty their caches or do hard-refreshes from time to time to make sure that they have the latest javascript code.

    Installation / Upgrade
    These use the same process as all previous vBulletin 3 releases. Please refer to an earlier release announcement for full instructions.

    Changed Files
    As this is still a beta, full changed file lists will not be provided.

    Discussion
    To discuss this release, please continue to use this thread.
  • Kier
    Former Lead Developer, vBulletin
    • Sep 2000
    • 8179

    #2
    Modified Templates
    The following templates have been modified since the last release, if you have customised any of the following you may need to revert the template to fix bugs or display any new features.

    FORUMDISPLAY

    search_results
    SHOWTHREAD

    Replaced references to align="left" with align="$stylevar[left]" in the inline moderation menus for RTL languages.

    Requires revert? No, unless you are using a right-to-left language.


    header
    footer
    FORUMHOME
    modifylist
    modifyoptions
    navbar
    register_coppaform
    register_rules
    SHOWTHREAD
    USERCP
    USERCP_SHELL

    Question marks have been removed from URLs that didn't need them, e.g. index.php?

    Requires Revert? No


    threadbit
    threadbit_deleted

    Added an alt phrase for the moderated image.

    Requires Revert? No


    navbar

    Added return false; to the onclick event for the leading breadcrumb image to combat this bug.

    Also changed class="button" to class="bginput" style="font-size: 11px" for the username and password input fields.

    Requires revert? Not really, it was just annoying before.


    SHOWTHREAD_SHOWPOST

    Modified the link back to the original thread to point to the post in the thread as well as to be underlined.

    Requires revert? No


    register

    Changed the condition for showing the registration image verification to prevent bot access.

    Requires revert? Yes


    postbit_quickedit

    Wrapped the entire template as follows:
    HTML Code:
    <if condition="$show['quick_edit_form_tag']"><form></if>
     
    (existing template goes here)
     
    <if condition="$show['quick_edit_form_tag']"></form></if>
    Requires revert? Yes/No - This fix affects only Safari - see this bug report.


    memberinfo_customfields

    Removed the conditional from the template since it was moved to the code.

    Requires revert? No


    subscription_payment_worldpay
    subscription_payment_authorizenet

    Subscription variable update.

    Requires revert? Yes


    threadadmin_deleteposts

    Add:

    HTML Code:
    <input type="hidden" name="p" value="$postid" />
    <input type="hidden" name="url" value="$url" />
    after

    HTML Code:
    <input type="hidden" name="do" value="dodeleteposts" />
    This allows you to return to where you were when deleting posts with inline moderation.

    Requires Revert? Yes


    editor_toolbar_on

    Added a conditional to swap the alignment and indent/outdent icons around if you are using a RTL language.

    Requires revert? Only if you use a RTL language.


    editor_clientscript

    Added vbphrase[insert_all].

    Requires Revert? Just add the phrase


    SHOWTHREAD

    Add:
    HTML Code:
    <input type="hidden" name="p" value="$postid" />
    After:
    HTML Code:
    <if condition="$show['inlinemod']">
    <form action="inlinemod.php" method="post" id="inlinemodform">
    <input type="hidden" name="s" value="$session[sessionhash]" />
    <input type="hidden" name="threadid" value="$threadinfo[threadid]" />
    Then, move the entirety of that <if> block up in the template so that it sits right below $poll

    Requires revert? Yes

    Comment

    widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
    Working...