$xoopsOption['pagetype'] = "search"; include 'mainfile.php'; $config_handler =& xoops_gethandler('config'); $xoopsConfigSearch =& $config_handler->getConfigsByCat(XOOPS_CONF_SEARCH); if ($xoopsConfigSearch['enable_search'] != 1) { header('Location: '.XOOPS_URL.'/index.php'); exit(); } extract($_GET); extract($_POST, EXTR_OVERWRITE);
$xoopsOption['pagetype'] = "search";
include 'mainfile.php';
// xoops search japanese optimization START
if(file_exists(XOOPS_ROOT_PATH."/modules/search/index.php")){
$module_handler =& xoops_gethandler('module');
$module =& $module_handler->getByDirname('search');
if( $module->getVar('isactive') == 1){
header("Location: ".XOOPS_URL."/modules/".$mydirname."/index.php?".$_SERVER['QUERY_STRING']);
exit();
}
}
// xoops search japanese optimization END
$config_handler =& xoops_gethandler('config');
$xoopsConfigSearch =& $config_handler->getConfigsByCat(XOOPS_CONF_SEARCH);
if ($xoopsConfigSearch['enable_search'] != 1) {
header('Location: '.XOOPS_URL.'/index.php');
exit();
}
extract($_GET);
extract($_POST, EXTR_OVERWRITE);
Version | Date | News |
---|---|---|
1.0 | 2005-01-19 | First release |
2.0 | 2006-06-02 | Rewrited the typo that causes SQL Injection. [Bug]The text was not displayed when retrieving from the block. |
2.01 | 2007-12-05 | Deleted link to Amethyst Blue site. |
2.01a | 2008-12-16 | [Bug]The search is not done correctly when words that include comma. |
2.01b | 2008-12-18 | Added two language files(English and Ja_utf8) and help file(this file). |
2.01c | ----- | Extended the range of the retrieval for Japanese. |
2.01d | 2009-01-13 | [Bug?]Corrected the point that failed in cutting out the retrieval result unusually. Assumed the display range specification to be character number conversion from byte conversion. |
2.01e | 2009-02-01 | added mymenu, said "good-bye" to system modules and "welcome" to altsys. |
2.02 | 2009-03-19 | Hack version Release. |
2.02a | 2009-04-27 | [Bug]Corrected entity reference("&" -> "&")in mymenu. 2 templates and help(this file) were updated. |
2.03 | 2010-03-24 | [Bug]Excluded modules Options were not saved. help(this file) were updated. |