fix
This commit is contained in:
parent
50805c253f
commit
1e7b0e46e6
6 changed files with 29 additions and 10 deletions
|
@ -39,7 +39,8 @@
|
|||
"20150731",
|
||||
"20150807",
|
||||
"20150809",
|
||||
"20150810"
|
||||
"20150810",
|
||||
"20150811"
|
||||
|
||||
]
|
||||
|
||||
|
@ -1968,6 +1969,21 @@
|
|||
"user": "Flashwave"
|
||||
}
|
||||
|
||||
],
|
||||
|
||||
"20150811": [
|
||||
|
||||
{
|
||||
"type": "REM",
|
||||
"change": "Remove unneeded rules from .htaccess in the content folder.",
|
||||
"user": "Flashwave"
|
||||
},
|
||||
{
|
||||
"type": "FIX",
|
||||
"change": "Fixed error caused by users table being empty on front page.",
|
||||
"user": "Flashwave"
|
||||
}
|
||||
|
||||
]
|
||||
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
namespace Sakura;
|
||||
|
||||
// Define Sakura version
|
||||
define('SAKURA_VERSION', '20150810');
|
||||
define('SAKURA_VERSION', '20150811');
|
||||
define('SAKURA_VLABEL', 'Eminence');
|
||||
define('SAKURA_COLOUR', '#6C3082');
|
||||
define('SAKURA_STABLE', false);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a id="gotop" class="gotop fa fa-angle-double-up hidden" href="#top"></a>
|
||||
<a id="gotop" class="fa fa-angle-double-up hidden" href="#top"></a>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="ftsections">
|
||||
|
|
|
@ -243,7 +243,8 @@ a.default:active {
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a.gotop {
|
||||
a#gotop,
|
||||
a#changePageWidth {
|
||||
display: inline-block;
|
||||
background: #111;
|
||||
color: #FFF;
|
||||
|
@ -265,23 +266,25 @@ a.gotop {
|
|||
text-shadow: 0 0 5px #FFF;
|
||||
}
|
||||
|
||||
a.gotop:hover {
|
||||
a#gotop:hover,
|
||||
a#changePageWidth:hover {
|
||||
opacity: .8;
|
||||
box-shadow: 0 0 7px #FFF inset;
|
||||
text-shadow: 0 0 7px #FFF;
|
||||
}
|
||||
|
||||
a.gotop:active {
|
||||
a#gotop:active,
|
||||
a#changePageWidth:active {
|
||||
box-shadow: 0 0 15px #FFF inset;
|
||||
text-shadow: 0 0 10px #FFF;
|
||||
opacity: .9;
|
||||
}
|
||||
|
||||
a.gotop.enter {
|
||||
a#gotop.enter {
|
||||
animation: slideInFromRight 1 .6s;
|
||||
}
|
||||
|
||||
a.gotop.exit {
|
||||
a#gotop.exit {
|
||||
animation: slideOutToBottom 1 .6s;
|
||||
}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ $renderData['board'] = [
|
|||
|
||||
$renderData['stats'] = [
|
||||
'userCount' => ($_INDEX_USER_COUNT = count($_INDEX_USERS = Users::getAllUsers(false))) .' user'. ($_INDEX_USER_COUNT == 1 ? '' : 's'),
|
||||
'newestUser' => ($_INDEX_NEWEST_USER = max($_INDEX_USERS)),
|
||||
'newestUser' => ($_INDEX_NEWEST_USER = empty($_INDEX_USERS) ? Users::getUser(0) : max($_INDEX_USERS)),
|
||||
'lastRegDate' => ($_INDEX_LAST_REGDATE = date_diff(date_create(date('Y-m-d', $_INDEX_NEWEST_USER['regdate'])), date_create(date('Y-m-d')))->format('%a')) .' day'. ($_INDEX_LAST_REGDATE == 1 ? '' : 's'),
|
||||
'onlineUsers' => Users::checkAllOnline(),
|
||||
'topicCount' => ($_TOPICS = count(Database::fetch('topics'))) .' topic'. ($_TOPICS != 1 ? 's' : ''),
|
||||
|
|
|
@ -569,7 +569,7 @@ if(Users::checkLogin()) {
|
|||
$pages = [
|
||||
'home' => ['General', 'Home', ['Welcome to the Settings Panel. From here you can monitor, view and update your profile and preferences.']],
|
||||
'profile' => ['General', 'Edit Profile', ['These are the external account links etc. on your profile, shouldn\'t need any additional explanation for this one.']],
|
||||
'groups' => ['General', 'Groups', []],
|
||||
'groups' => ['General', 'Groups', ['{{ user.colour }}']],
|
||||
'friendlisting' => ['Friends', 'List', ['Manage your friends.']],
|
||||
'friendrequests' => ['Friends', 'Requests', ['Handle friend requests.']],
|
||||
'notifications' => ['Notifications', 'History', ['This is the history of notifications that have been sent to you.']],
|
||||
|
|
Reference in a new issue