Just put this on my store - the front end looks like it's working but when I try to set the discount code in admin I get a blank Page.
I get the following error:
Line 25 is the 3rd in the following code:#0 {main}
thrown in /home/********/public_html/store/admin/discount_codes.php on line 25
[18-Dec-2023 18:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'Text' not found in /home/*******/public_html/store/admin/discount_codes.php:25
Stack trace:
Code: Select all
$action = (isset($_GET['action']) ? $_GET['action'] : '');
if (!Text::is_empty($action)) {
switch ($action) {
case 'setflag':
tep_db_query(sprintf(<<<'EOSQL'
UPDATE discount_codes
SET status = %s
WHERE discount_codes_id = %s
LIMIT 1
EOSQL
, (int)$_GET['flag'], (int)$_GET['dID']));