magic auth - it's mostly done or at least all the code bits are written and it looks in theory to be pretty secure and it doesn't white screen. Getting it to actually work(?), well we won't know how hard that will be until we get it on a couple of systems and try it. Magic auth on one box is a no-op because you're already authenticated.
This commit is contained in:
9
boot.php
9
boot.php
@@ -454,7 +454,7 @@ if(! class_exists('App')) {
|
||||
private $widgets = array(); // widgets for this page
|
||||
|
||||
|
||||
|
||||
public $groups;
|
||||
public $language;
|
||||
public $module_loaded = false;
|
||||
public $query_string;
|
||||
@@ -749,6 +749,13 @@ if(! class_exists('App')) {
|
||||
$this->apps = $arr;
|
||||
}
|
||||
|
||||
function set_groups($g) {
|
||||
$this->groups = $g;
|
||||
}
|
||||
|
||||
function get_groups() {
|
||||
return $this->groups;
|
||||
}
|
||||
|
||||
function set_widget($title,$html, $location = 'aside') {
|
||||
$this->widgets[] = array('title' => $title, 'html' => $html, 'location' => $location);
|
||||
|
||||
Reference in New Issue
Block a user