Code: Select all
<td style="width: 90%" class="overflow-auto"><?php echo $match['value']; ?></td>
Code: Select all
<td style="width: 90%" class="overflow-auto"><?php echo $match['value']; ?></td>
Code: Select all
$adminlangpath = DIR_FS_ADMIN . 'includes/languages/' . $_SESSION['zip_language'];
$cataloglangpath = DIR_FS_CATALOG . 'includes/languages/' . $_SESSION['zip_language'];
//Load the library files into an array
zipGetDirArray( $adminlangpath, [], 2 );
zipGetDirArray( $cataloglangpath, [], 2 );
Code: Select all
$adminlangpath = DIR_FS_ADMIN . 'includes/languages/' . $_SESSION['zip_language'];
$cataloglangpath = DIR_FS_CATALOG . 'includes/languages/' . $_SESSION['zip_language'];
$templatelangpath = DIR_FS_CATALOG . 'templates/' . TEMPLATE_SELECTION . '/includes/languages/' . $_SESSION['zip_language'];
//Load the library files into an array
zipGetDirArray( $adminlangpath, [], 2 );
zipGetDirArray( $cataloglangpath, [], 2 );
if (file_exists( $templatelangpath) ) {
zipGetDirArray( $templatelangpath, [], 2 );
}
Code: Select all
echo $templatelangpath;