Code
- Subs.php ➔ updateStats()
- Subs.php ➔ updateMemberData()
- Subs.php ➔ updateSettings()
- Subs.php ➔ constructPageIndex()
- Subs.php ➔ comma_format()
- Subs.php ➔ timeformat()
- Subs.php ➔ un_htmlspecialchars()
- Subs.php ➔ shorten_subject()
- Subs.php ➔ forum_time()
- Subs.php ➔ permute()
- Subs.php ➔ parse_bbc()
- Subs.php ➔ parsesmileys()
- Subs.php ➔ highlight_php_code()
- Subs.php ➔ redirectexit()
- Subs.php ➔ obExit()
- Subs.php ➔ url_image_size()
- Subs.php ➔ setupThemeContext()
- Subs.php ➔ setMemoryLimit()
- Subs.php ➔ memoryReturnBytes()
- Subs.php ➔ template_header()
- Subs.php ➔ theme_copyright()
- Subs.php ➔ template_footer()
- Subs.php ➔ template_javascript()
- Subs.php ➔ template_css()
- Subs.php ➔ custMinify()
- Subs.php ➔ getAttachmentFilename()
- Subs.php ➔ ip2range()
- Subs.php ➔ host_from_ip()
- Subs.php ➔ text2words()
- Subs.php ➔ create_button()
- Subs.php ➔ setupMenuContext()
- Subs.php ➔ smf_seed_generator()
- Subs.php ➔ call_integration_hook()
- Subs.php ➔ add_integration_function()
- Subs.php ➔ remove_integration_function()
- Subs.php ➔ call_helper()
- Subs.php ➔ load_file()
- Subs.php ➔ prepareLikesContext()
- Subs.php ➔ sanitizeMSCutPaste()
- Subs.php ➔ replaceEntities__callback()
- Subs.php ➔ fixchar__callback()
- Subs.php ➔ entity_fix__callback()
- Subs.php ➔ get_gravatar_url()
- Subs.php ➔ smf_list_timezones()
- Subs.php ➔ fix_tz_abbrev()
- Subs.php ➔ inet_ptod()
- Subs.php ➔ inet_dtop()
- Subs.php ➔ _safe_serialize()
- Subs.php ➔ safe_serialize()
- Subs.php ➔ _safe_unserialize()
- Subs.php ➔ safe_unserialize()
- Subs.php ➔ smf_chmod()
- Subs.php ➔ smf_json_decode()
- Subs.php ➔ isValidIP()
- Subs.php ➔ smf_serverResponse()
- Subs.php ➔ set_tld_regex()
- Subs.php ➔ build_regex()

Loading history...
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.