Fixes to google chart and other minor items

This commit is contained in:
Deon George
2011-10-13 17:53:43 +11:00
parent dce2daddc4
commit f2fed0c54f
7 changed files with 51 additions and 21 deletions

View File

@@ -25,7 +25,7 @@ class Controller_Admin_Account extends Controller_TemplateDefault_Admin {
ORM::factory('account_log')->order_by('id','DESC')->find_all(),
25,
array(
'id'=>array('label'=>'ID','url'=>'admin/account/view/'),
'id'=>array('label'=>'ID'),
'date_orig'=>array('label'=>'Date'),
'account->name()'=>array('label'=>'Account'),
'ip'=>array('label'=>'IP Address'),

View File

@@ -18,7 +18,7 @@ class Controller_lnApp_Login extends Controller_TemplateDefault {
// If user already signed-in
if (Auth::instance()->logged_in()!= 0) {
// Redirect to the user account
Request::current()->redirect('user/welcome');
Request::current()->redirect('user/welcome/index');
}
// If there is a post and $_POST is not empty
@@ -35,7 +35,7 @@ class Controller_lnApp_Login extends Controller_TemplateDefault {
Request::current()->redirect($redir);
} else
Request::current()->redirect('user/welcome');
Request::current()->redirect('user/welcome/index');
} else {
SystemMessage::add(array(

View File

@@ -1,9 +1,9 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB User Main home page controller
* lnApp User Main home page controller
*
* @package OSB
* @package lnApp
* @subpackage Page/Admin
* @category Controllers
* @author Deon George

View File

@@ -1,9 +1,9 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB User Main home page controller
* lnApp User Main home page controller
*
* @package OSB
* @package lnApp
* @subpackage Page/User
* @category Controllers
* @author Deon George

View File

@@ -14,6 +14,12 @@ class Controller_Welcome extends Controller_TemplateDefault {
protected $auth_required = FALSE;
public function action_index() {
if (! Kohana::config('config.appname'))
Request::current()->redirect('guide/app');
if (! Auth::instance()->logged_in())
Request::current()->redirect('login');
Block::add(array(
'title'=>'Welcome to lnApp (public)!',
'subtitle'=>'Using lnApp',

View File

@@ -4,7 +4,7 @@
* This class provides Country routines
*
* @package OSB
* @subpackage Cart
* @subpackage Country
* @category Helpers
* @author Deon George
* @copyright (c) 2010 Deon George