Skip to content

Commit

Permalink
1.8.24 meta
Browse files Browse the repository at this point in the history
  • Loading branch information
dvz committed Aug 9, 2020
1 parent 37ad29d commit 5fe63c8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
2 changes: 1 addition & 1 deletion admin/modules/user/users.php
Expand Up @@ -930,7 +930,7 @@
<link rel="stylesheet" href="../jscripts/sceditor/themes/mybb.css" type="text/css" media="all" />
<script type="text/javascript" src="../jscripts/sceditor/jquery.sceditor.bbcode.min.js?ver=1822"></script>
<script type="text/javascript" src="../jscripts/bbcodes_sceditor.js?ver=1823"></script>
<script type="text/javascript" src="../jscripts/bbcodes_sceditor.js?ver=1824"></script>
<script type="text/javascript" src="../jscripts/sceditor/plugins/undo.js?ver=1805"></script>
EOF;
$page->output_header($lang->edit_user);
Expand Down
4 changes: 2 additions & 2 deletions inc/class_core.php
Expand Up @@ -14,14 +14,14 @@ class MyBB {
*
* @var string
*/
public $version = "1.8.23";
public $version = "1.8.24";

/**
* The version code of MyBB we're running.
*
* @var integer
*/
public $version_code = 1823;
public $version_code = 1824;

/**
* The current working directory.
Expand Down
6 changes: 3 additions & 3 deletions install/resources/mybb_theme.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<theme name="MyBB Master Style" version="1823">
<theme name="MyBB Master Style" version="1824">
<properties>
<templateset><![CDATA[1]]></templateset>
<imgdir><![CDATA[images]]></imgdir>
Expand Down Expand Up @@ -14138,9 +14138,9 @@ if(use_xmlhttprequest == "1")
<td class="trow1" width="20%"><strong>{$lang->username}</strong></td>
<td class="trow1">{$mybb->user['username']} <span class="smalltext">[<strong><a href="member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->change_user}</a></strong>]</span></td>
</tr>]]></template>
<template name="codebuttons" version="1823"><![CDATA[<link rel="stylesheet" href="{$mybb->asset_url}/jscripts/sceditor/themes/{$theme['editortheme']}" type="text/css" media="all" />
<template name="codebuttons" version="1824"><![CDATA[<link rel="stylesheet" href="{$mybb->asset_url}/jscripts/sceditor/themes/{$theme['editortheme']}" type="text/css" media="all" />
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/sceditor/jquery.sceditor.bbcode.min.js?ver=1822"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/bbcodes_sceditor.js?ver=1823"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/bbcodes_sceditor.js?ver=1824"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/sceditor/plugins/undo.js?ver=1821"></script>
<script type="text/javascript">
var partialmode = {$mybb->settings['partialmode']},
Expand Down
23 changes: 23 additions & 0 deletions install/resources/upgrade51.php
@@ -0,0 +1,23 @@
<?php
/**
* MyBB 1.8
* Copyright 2014 MyBB Group, All Rights Reserved
*
* Website: http://www.mybb.com
* License: http://www.mybb.com/about/license
*
*/

/**
* Upgrade Script: 1.8.23
*/

$upgrade_detail = array(
"revert_all_templates" => 0,
"revert_all_themes" => 0,
"revert_all_settings" => 0
);

@set_time_limit(0);

/* Nothing to do for 1.8.23 */

0 comments on commit 5fe63c8

Please sign in to comment.