Plugin Directory

Changeset 3147733


Ignore:
Timestamp:
09/06/2024 05:28:09 PM (15 months ago)
Author:
LiteSpeedTech
Message:

Release v6.5.0.2

Location:
litespeed-cache
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • litespeed-cache/tags/6.5.0.2/src/cloud.cls.php

    r3147731 r3147733  
    15591559        );
    15601560        if (!empty($_POST['funcs'])) {
    1561             foreach ($_POST['funcs'] as $func) {
    1562                 $resp[$func] = function_exists($func) ? 'y' : 'n';
     1561            foreach ($_POST['funcs'] as $v) {
     1562                $resp[$v] = function_exists($v) ? 'y' : 'n';
    15631563            }
    15641564        }
    15651565        if (!empty($_POST['classes'])) {
    1566             foreach ($_POST['classes'] as $cls) {
    1567                 $resp[$cls] = class_exists($cls) ? 'y' : 'n';
     1566            foreach ($_POST['classes'] as $v) {
     1567                $resp[$v] = class_exists($v) ? 'y' : 'n';
     1568            }
     1569        }
     1570        if (!empty($_POST['consts'])) {
     1571            foreach ($_POST['consts'] as $v) {
     1572                $resp[$v] = defined($v) ? 'y' : 'n';
    15681573            }
    15691574        }
  • litespeed-cache/tags/6.5.0.2/tpl/toolbox/beta_test.tpl.php

    r3147731 r3147733  
    77// Existing public version list
    88$v_list = array(
    9     '6.5',
     9    '6.5.0.2',
    1010    '6.4.1',
    1111    '6.3.0.1',
  • litespeed-cache/trunk/src/cloud.cls.php

    r3146657 r3147733  
    15591559        );
    15601560        if (!empty($_POST['funcs'])) {
    1561             foreach ($_POST['funcs'] as $func) {
    1562                 $resp[$func] = function_exists($func) ? 'y' : 'n';
     1561            foreach ($_POST['funcs'] as $v) {
     1562                $resp[$v] = function_exists($v) ? 'y' : 'n';
    15631563            }
    15641564        }
    15651565        if (!empty($_POST['classes'])) {
    1566             foreach ($_POST['classes'] as $cls) {
    1567                 $resp[$cls] = class_exists($cls) ? 'y' : 'n';
     1566            foreach ($_POST['classes'] as $v) {
     1567                $resp[$v] = class_exists($v) ? 'y' : 'n';
     1568            }
     1569        }
     1570        if (!empty($_POST['consts'])) {
     1571            foreach ($_POST['consts'] as $v) {
     1572                $resp[$v] = defined($v) ? 'y' : 'n';
    15681573            }
    15691574        }
  • litespeed-cache/trunk/tpl/toolbox/beta_test.tpl.php

    r3146657 r3147733  
    77// Existing public version list
    88$v_list = array(
    9     '6.5',
     9    '6.5.0.2',
    1010    '6.4.1',
    1111    '6.3.0.1',
Note: See TracChangeset for help on using the changeset viewer.