fixing the HELP system for aide-alternc.org
This commit is contained in:
parent
f12bbd53d2
commit
a481c85fb9
|
@ -29,11 +29,11 @@
|
||||||
*/
|
*/
|
||||||
require_once("../../class/config_nochk.php");
|
require_once("../../class/config_nochk.php");
|
||||||
$fields = array (
|
$fields = array (
|
||||||
"hid" => array ("post", "integer", ""),
|
"hid" => array ("request", "integer", ""),
|
||||||
);
|
);
|
||||||
getFields($fields);
|
getFields($fields);
|
||||||
|
|
||||||
header("Location: ".$help_baseurl."go?version=".urlencode($L_VERSION_HELP)."&hid=$hid");
|
header("Location: ".$help_baseurl."go.php?version=".urlencode($L_VERSION_HELP)."&lang=".$lang."&hid=".$hid);
|
||||||
|
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
|
|
|
@ -88,8 +88,8 @@ function checkObj(name)
|
||||||
function help(hid) {
|
function help(hid) {
|
||||||
var top=100; /* (10-screen.height); */
|
var top=100; /* (10-screen.height); */
|
||||||
var left=100; /*(10-screen.width); */
|
var left=100; /*(10-screen.width); */
|
||||||
var largeur=700;
|
var largeur=800;
|
||||||
var hauteur=550;
|
var hauteur=700;
|
||||||
window.open('./aide/help.php?hid='+hid,'help','top='+top+',left='+left+',width='+largeur+',height='+hauteur+',scrollbars=yes');
|
window.open('./aide/help.php?hid='+hid,'help','top='+top+',left='+left+',width='+largeur+',height='+hauteur+',scrollbars=yes');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue