PATH:
home
/
sudairsocs
/
www
/
forum
/
Sources
/
tasks
<?php /** * This file contains code used to initiate updates of $modSettings['tld_regex'] * * Simple Machines Forum (SMF) * * @package SMF * @author Simple Machines https://www.simplemachines.org * @copyright 2022 Simple Machines and individual contributors * @license https://www.simplemachines.org/about/smf/license.php BSD * * @version 2.1.0 */ /** * Class Update_TLD_Regex */ class Update_TLD_Regex extends SMF_BackgroundTask { /** * This executes the task. It just calls set_tld_regex() in Subs.php * * @return bool Always returns true */ public function execute() { global $sourcedir; require_once($sourcedir . '/Subs.php'); set_tld_regex(true); return true; } } ?>
[+]
..
[-] Register-Notify.php
[edit]
[-] Buddy-Notify.php
[edit]
[+]
xml
[-] MemberReportReply-Notify.php
[edit]
[-] GroupAct-Notify.php
[edit]
[-] CreateAttachment-Notify.php
[edit]
[-] MsgReport-Notify.php
[edit]
[-] ExportProfileData.php
[edit]
[-] index.php
[edit]
[-] Likes-Notify.php
[edit]
[-] EventNew-Notify.php
[edit]
[-] Birthday-Notify.php
[edit]
[-] MsgReportReply-Notify.php
[edit]
[-] CreatePost-Notify.php
[edit]
[-] ApproveReply-Notify.php
[edit]
[-] MemberReport-Notify.php
[edit]
[-] UpdateTldRegex.php
[edit]
[-] ApprovePost-Notify.php
[edit]
[-] GroupReq-Notify.php
[edit]