From d49319d3c1aa2c00174686037ba365109cd7ec5e Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 12 Jun 2018 16:57:09 +0200 Subject: [PATCH 1/3] #1669 This is throwing an error now Didn't use to do that in older PHP versions, but it is wrong nontheless. --- include/parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/parser.php b/include/parser.php index 952865072..448897119 100755 --- a/include/parser.php +++ b/include/parser.php @@ -192,7 +192,7 @@ function preparse_tags($text, &$errors, $is_signature = false) // and tags we need to check are closed (the same as above, added it just in case) $tags_closed = $tags; // Tags we can nest and the depth they can be nested to - $tags_nested = array('quote' => $luna_config['o_quote_depth'], 'list' => 5, '*' => 5, spoiler => '5'); + $tags_nested = array('quote' => $luna_config['o_quote_depth'], 'list' => 5, '*' => 5, 'spoiler' => '5'); // Tags to ignore the contents of completely (just code) $tags_ignore = array('code', 'c'); // Tags not allowed From 140c0cf8b8768fe96a1aec17c17f0fe3373402c5 Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 12 Jun 2018 17:56:12 +0200 Subject: [PATCH 2/3] Add notes about more changes to About --- backstage/about.php | 3 +++ include/version.php | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/backstage/about.php b/backstage/about.php index ccf4d9d23..28d02b476 100755 --- a/backstage/about.php +++ b/backstage/about.php @@ -33,6 +33,7 @@

Emerald Update 9 2.0.9

diff --git a/include/version.php b/include/version.php index ef5b20468..d97efdd85 100755 --- a/include/version.php +++ b/include/version.php @@ -6,9 +6,9 @@ */ class Version { - const LUNA_VERSION = '2.0.9-alpha.1'; + const LUNA_VERSION = '2.0.9-alpha.2'; const LUNA_BRANCH = '2.0'; - const LUNA_CORE_VERSION = '2.0.5787'; + const LUNA_CORE_VERSION = '2.0.5791'; const LUNA_CODE_NAME = 'Emerald'; // The database version number, every change in the database requires this number to go one up From 436475ce69681466a5d747acac1539c019420976 Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 12 Jun 2018 18:05:54 +0200 Subject: [PATCH 3/3] #1670 Update night mode to correctly color border --- backstage/about.php | 2 ++ backstage/css/style.css | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/backstage/about.php b/backstage/about.php index 28d02b476..7c2b3b14d 100755 --- a/backstage/about.php +++ b/backstage/about.php @@ -41,8 +41,10 @@
  • +
  • +
  • diff --git a/backstage/css/style.css b/backstage/css/style.css index 706841329..7b442bdf1 100755 --- a/backstage/css/style.css +++ b/backstage/css/style.css @@ -1510,6 +1510,10 @@ a.label-new { background-color: #545454; } +.night .release-notes h2 { + border-bottom: 1px solid #333; +} + .night .table-striped > tbody > tr:nth-of-type(2n+1) { background: #4f4f4f; }