<?php /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ ?> <?php use WPIDE\App\AppConfig; use const WPIDE\Constants\CONTENT_DIR; $root = AppConfig::get('file.root'); $content_dir = basename(CONTENT_DIR); if(!str_contains($root, $content_dir)) { $root = str_replace(ABSPATH, "/", CONTENT_DIR.$root); AppConfig::update('file.root', $root); }