mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
- Fixed error log not having the __LINE__ and __FILE__ parameters being passed
- There is some temp code in here which will be used for the spell checker, until we can decied on creating a common place for classes like this
This commit is contained in:
parent
a43f8b6071
commit
31287b0095
30
index.php
30
index.php
@ -38,6 +38,14 @@
|
||||
$invalid_data = True;
|
||||
}
|
||||
|
||||
// FIX ME! Don't leave this, we need to create a common place where applications can access
|
||||
// things like the spell check class that the API has. (jengo)
|
||||
if ($app == 'phpgwapi')
|
||||
{
|
||||
$app = 'home';
|
||||
$api_requested = True;
|
||||
}
|
||||
|
||||
$GLOBALS['phpgw_info']['flags'] = array(
|
||||
'noheader' => True,
|
||||
'nonavbar' => True,
|
||||
@ -45,11 +53,16 @@
|
||||
);
|
||||
include('./header.inc.php');
|
||||
|
||||
if ($app == 'home')
|
||||
if ($app == 'home' && ! $api_requested)
|
||||
{
|
||||
Header('Location: ' . $GLOBALS['phpgw']->link('/home.php'));
|
||||
}
|
||||
|
||||
if ($api_requested)
|
||||
{
|
||||
$app = 'phpgwapi';
|
||||
}
|
||||
|
||||
$GLOBALS['obj'] = CreateObject(sprintf('%s.%s',$app,$class));
|
||||
$GLOBALS[$class] = $GLOBALS['obj'];
|
||||
if ((is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions[$method]) && ! $invalid_data)
|
||||
@ -60,10 +73,21 @@
|
||||
else
|
||||
{
|
||||
Header('Location: ' . $GLOBALS['phpgw']->link('/home.php'));
|
||||
$GLOBALS['phpgw']->log->message(array('text'=>'W-BadmenuactionVariable, menuaction missing or corrupt: %1','p1'=>$menuaction));
|
||||
$GLOBALS['phpgw']->log->message(array(
|
||||
'text' => 'W-BadmenuactionVariable, menuaction missing or corrupt: %1',
|
||||
'p1' => $menuaction,
|
||||
'line' => __LINE__,
|
||||
'file' => __FILE__
|
||||
|
||||
));
|
||||
if (! is_array($obj->public_functions) || ! $obj->public_functions[$method])
|
||||
{
|
||||
$GLOBALS['phpgw']->log->message(array('text'=>'W-BadmenuactionVariable, attempted to access private method: %1','p1'=>$method));
|
||||
$GLOBALS['phpgw']->log->message(array(
|
||||
'text' => 'W-BadmenuactionVariable, attempted to access private method: %1',
|
||||
'p1' => $method,
|
||||
'line' => __LINE__,
|
||||
'file' => __FILE__
|
||||
));
|
||||
}
|
||||
$GLOBALS['phpgw']->log->commit();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user