Went thru the new release and compared with buglets i had found for my 'version'
Here's a summary:
File:
/admin/cp_style.css
Needs version upgraded to 7.3.1 from 7.3b4
---------
File:
/admin/doprofiles.php
Line 50, remove "CUSTOM_TITLE_MAX" in the list. It's obsolete with new permissions.
----------
File:
/libs/mysql.inc.php
Line 284, $showerror should be set to 0 (as default)
----------
File:
/libs/topic_tree.inc.php
Lines 151-153 should be removed, since html->user_color takes care of that. If left in and user has a color, it generates unneeded double span.
-----------
File:
/scripts/changebasic.inc.php
Need to add @ line 560 the following:
if (strlen($custom_title) > $can_custom = $userob->check_access("site","CUSTOM_TITLE")) {
$html->not_right($ubbt_lang['CUSTOM_TITLE_TOO_LONG']);
}
otherwise users can have a ridiculously long CT
-----------
File:
/scripts/editbasic.inc.php
line 81 should be:
$ubbt_lang['CUSTOM_TITLE'] = $html->substitute($ubbt_lang['CUSTOM_TITLE'], array('CHARS' => $can_custom));
$config is no longer needed, plus the $config array index is misspelled

-----------
File:
/scripts/myfeeds.inc.php
Lines 69-72 should be removed. The perm checks now take care of this an allow 'Guest read' forums to be natural feeds
Line 235 should become:
$lclRows[$i]['guid'] = make_ubb_url("ubb=showflat&Number={$postID}#Post{$postID}","",true);
Line 252 should become:
$lclRows[0]['link'] = make_ubb_url("ubb=cfrm", '', true);
Line 321 should become:
$lclRows[$i]['guid'] = make_ubb_url("ubb=viewmessage&message={$topicID}&gonew=0","",true);
Line 336 should become:
$lclRows[0]['link'] = make_ubb_url("ubb=cfrm","",true);
----------
Is there a reason for the /languages/temp directory in the release?
----------
File(s) /languages/english/admin
forum_perms vs forumperms
site_perms vs siteperms
duplicate/obsolete?
-----------
File: /languages/english/changebasic.php
Need to add the wordlet
$ubbt_lang['CUSTOM_TITLE_TOO_LONG'] = "Custom title field is too long.";
if you adopted the changes i recommended above
-----------
File: /templates/default/admin/stylepreview.tmpl
Line 11 should be : <body> (remove the ")
------------
File: /templates/default/admin/referrer_log.tmpl
Line 85: Remove <F3><F3>
------------
File: /templates/default/admin/admin_log.tmpl
Line 73: Same dealio with the F3s
------------
File: /templates/default/admin/admin_footer.tmpl
Line 62: $VERSION_FRIENDLY should be $VERSION
------------