Ignore:
Timestamp:
Jan 30, 2013, 12:12:22 PM (11 years ago)
Author:
mistic100
Message:

feature:65 Add support for PHP mysqli extension, activated by default, remove returns of link_identifier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/c13y_internal.class.php

    r19703 r20462  
    4343    $check_list = array();
    4444
    45     $check_list[] = array('type' => 'PHP', 'current' => phpversion(), 'required' => REQUIRED_PHP_VERSION);
    46 
    47     $db_version = pwg_get_db_version();
    48     $check_list[] = array('type' => $conf['dblayer'],
    49                           'current' => $db_version,
    50                           'required' => constant('REQUIRED_'.str_replace('-', '_', strtoupper($conf['dblayer'])).'_VERSION')
    51                           );
     45    $check_list[] = array(
     46        'type' => 'PHP',
     47        'current' => phpversion(),
     48        'required' => REQUIRED_PHP_VERSION,
     49        );
     50
     51    $check_list[] = array(
     52        'type' => 'MySQL',
     53        'current' => pwg_get_db_version(),
     54        'required' => REQUIRED_MYSQL_VERSION,
     55        );
    5256
    5357    foreach ($check_list as $elem)
Note: See TracChangeset for help on using the changeset viewer.