Minor fixes for rendering
This commit is contained in:
parent
68d96ca85f
commit
e07fc159cf
@ -32,7 +32,11 @@ abstract class lnApp_Auth_ORM extends Kohana_Auth_ORM {
|
||||
* @return Model_Account|NULL The user that the token is valid for.
|
||||
*/
|
||||
protected function _get_token_user($token) {
|
||||
list($id,$key) = explode(':',$token,2);
|
||||
try {
|
||||
list($id,$key) = explode(':',$token,2);
|
||||
} catch (Exception $e) {
|
||||
return ORM::factory('Account');
|
||||
}
|
||||
|
||||
$uo = ORM::factory('Account',$id);
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|
||||
<?php
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (Request::current() AND Request::current()->secure())) {
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (is_object(Request::current()) AND Request::current()->secure())) {
|
||||
echo HTML::style('media/theme/bootstrap/css/bootstrap.min.css');
|
||||
echo HTML::style('media/vendor/font-awesome/css/font-awesome.min.css');
|
||||
} else {
|
||||
@ -127,7 +127,7 @@
|
||||
</div> <!-- /footer -->
|
||||
|
||||
<?php
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (Request::current() AND Request::current()->secure())) {
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (is_object(Request::current()) AND Request::current()->secure())) {
|
||||
echo HTML::script('media/js/jquery/jquery-1.9.1.min.js');
|
||||
echo HTML::script('media/theme/bootstrap/js/bootstrap.min.js');
|
||||
echo HTML::script('media/js/lodash/lodash-1.2.1.min.js');
|
||||
|
@ -14,7 +14,7 @@
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|
||||
<?php
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (Request::current() AND Request::current()->secure())) {
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (is_object(Request::current()) AND Request::current()->secure())) {
|
||||
echo HTML::style('media/theme/bootstrap/css/bootstrap.min.css');
|
||||
echo HTML::style('media/theme/bootstrap/css/bootstrap-theme.min.css');
|
||||
echo HTML::style('media/vendor/font-awesome/css/font-awesome.min.css');
|
||||
@ -103,7 +103,7 @@
|
||||
</div> <!-- /footer -->
|
||||
|
||||
<?php
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (Request::current() AND Request::current()->secure())) {
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (is_object(Request::current()) AND Request::current()->secure())) {
|
||||
echo HTML::script('media/js/jquery/jquery-1.9.1.min.js');
|
||||
echo HTML::script('media/theme/bootstrap/js/bootstrap.min.js');
|
||||
echo HTML::script('media/js/lodash/lodash-1.2.1.min.js');
|
||||
|
@ -14,7 +14,7 @@
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|
||||
<?php
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (Request::current() AND Request::current()->secure())) {
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (is_object(Request::current()) AND Request::current()->secure())) {
|
||||
echo HTML::style('media/theme/bootstrap/css/bootstrap.min.css');
|
||||
echo HTML::style('media/vendor/font-awesome/css/font-awesome.min.css');
|
||||
} else {
|
||||
@ -102,7 +102,7 @@
|
||||
</div> <!-- /footer -->
|
||||
</div> <!-- /wrapper -->
|
||||
<?php
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (Request::current() AND Request::current()->secure())) {
|
||||
if (Kohana::$environment >= Kohana::TESTING OR (is_object(Request::current()) AND Request::current()->secure())) {
|
||||
echo HTML::script('media/js/jquery/jquery-1.9.1.min.js');
|
||||
echo HTML::script('media/theme/bootstrap/js/bootstrap.min.js');
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user