| | |
| | | $b = $aTwo[$sKey]; |
| | | if(is_string($a)) $a = strtolower($a); |
| | | if(is_string($b)) $b = strtolower($b); |
| | | if($a < $b) return ($sDir == 'DESC' ? 1 : -1); |
| | | elseif($a > $b) return ($sDir == 'DESC' ? -1 : 1); |
| | | if($a < $b) return $sDir == 'DESC' ? 1 : -1; |
| | | elseif($a > $b) return $sDir == 'DESC' ? -1 : 1; |
| | | } |
| | | return 0; |
| | | } |
| | |
| | | $lng_file = ISPC_LIB_PATH.'/lang/'.$_SESSION['s']['language'].'.lng'; |
| | | if(!file_exists($lng_file)) |
| | | $lng_file = ISPC_LIB_PATH.'/lang/en.lng'; |
| | | include($lng_file); |
| | | include $lng_file; |
| | | $app->tpl->setVar($wb); |
| | | |
| | | //* Limit each page |
| | |
| | | $app->tpl_defaults(); |
| | | $app->tpl->pparse(); |
| | | } |
| | | |
| | | } |
| | | |
| | | ?> |