mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Merge with default
This commit is contained in:
commit
362024aff3
6 changed files with 14 additions and 11 deletions
|
@ -69,7 +69,7 @@
|
|||
{
|
||||
$nel_user = null;
|
||||
nt_auth_stop_session();
|
||||
nt_common_redirect('index.php');
|
||||
nt_common_redirect('');
|
||||
exit();
|
||||
}
|
||||
elseif (isset($NELTOOL['SESSION_VARS']['nelid']) && !empty($NELTOOL['SESSION_VARS']['nelid']))
|
||||
|
@ -138,8 +138,11 @@
|
|||
if (isset($nel_user['new_login']))
|
||||
{
|
||||
$default_user_application_id = 0;
|
||||
if ($nel_user['user_default_application_id'] > 0) $default_user_application_id = $nel_user['user_default_application_id'];
|
||||
elseif ($nel_user['group_default_application_id'] > 0) $default_user_application_id = $nel_user['group_default_application_id'];
|
||||
if (isset( $nel_user['user_default_application_id']) &&($nel_user['user_default_application_id'] > 0)) {
|
||||
$default_user_application_id = $nel_user['user_default_application_id'];
|
||||
}elseif (isset( $nel_user['group_default_application_id']) &&($nel_user['group_default_application_id'] > 0)) {
|
||||
$default_user_application_id = $nel_user['group_default_application_id'];
|
||||
}
|
||||
|
||||
if ($default_user_application_id > 0)
|
||||
{
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
define('NELTOOL_DBNAME','nel_tool');
|
||||
|
||||
// site paths definitions
|
||||
define('NELTOOL_SITEBASE','http://open.ryzom.com/');
|
||||
define('NELTOOL_SYSTEMBASE','/home/nevrax/hg/code/ryzom/tools/server/admin/');
|
||||
define('NELTOOL_SITEBASE',$_SERVER['PHP_SELF']);
|
||||
define('NELTOOL_SYSTEMBASE',dirname( dirname(__FILE__) ) . '/admin/');
|
||||
define('NELTOOL_LOGBASE', NELTOOL_SYSTEMBASE .'/logs/');
|
||||
define('NELTOOL_IMGBASE', NELTOOL_SYSTEMBASE .'/imgs/');
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ class sql_db
|
|||
}
|
||||
else
|
||||
{
|
||||
return ( $transaction == END_TRANSACTION ) ? true : false;
|
||||
return ( $transaction == 'END_TRANSACTION' ) ? true : false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<?php
|
||||
|
||||
$refresh_rates = array( /* // there values are for debug purposes only
|
||||
$refresh_rates = array(
|
||||
array('desc' => 'Every 5 secs',
|
||||
'secs' => 5,
|
||||
),
|
||||
array('desc' => 'Every 30 secs',
|
||||
'secs' => 30,
|
||||
),*/
|
||||
),
|
||||
array('desc' => 'Every 1 min.',
|
||||
'secs' => 60,
|
||||
),
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
$tpl->assign("tool_v_login", $nel_user['user_name']);
|
||||
$tpl->assign("tool_v_user_id", $nel_user['user_id']);
|
||||
$tpl->assign("tool_v_menu", $nel_user['user_menu_style']);
|
||||
$tpl->assign("tool_v_application", $nel_user['user_default_application_id']);
|
||||
$tpl->assign("tool_v_application", isset($nel_user['user_default_application_id']) ? $nel_user['user_default_application_id']:'') ;
|
||||
|
||||
if (isset($NELTOOL['POST_VARS']['tool_form_user_id']))
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
// This file contains all variables needed by other php scripts
|
||||
|
||||
$LogRelativePath = './';
|
||||
$LogRelativePath = 'logs/';
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
// Variables for nel database access
|
||||
|
|
Loading…
Reference in a new issue