Skip to content

Commit e94ec9c

Browse files
author
Mark Vincent
authored
Merge pull request #348 from WildcardSearch/maintenance
3.1.15 Release
2 parents 48c97b6 + 93c62b7 commit e94ec9c

31 files changed

+1431
-1348
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Advanced-Sidebox 3.1.14
1+
## Advanced-Sidebox 3.1.15
22

33
<p align="center">
44
<img title="Advanced Sidebox Logo" alt="Advanced Sidebox Logo" src="http://i.imgur.com/4QWLq5V.png" />

Upload/admin/jscripts/asb/asb_scripts.js

+23-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ var ASB = (function(a, $) {
1313
hooks: "hooks",
1414
actions: "actions",
1515
templates: "templates",
16+
error_file_name_empty: "no file name",
17+
error_file_does_not_exist: "file does not exist",
18+
error_file_empty: "file empty or corrupted",
1619
};
1720

1821
/**
@@ -120,12 +123,30 @@ var ASB = (function(a, $) {
120123
* @return void
121124
*/
122125
function showResults(info) {
126+
var $fileInfo = $("#file_info"),
127+
errorMessage;
128+
123129
// hide all the spinners
124130
$("div.ajax_spinners").hide();
125131

126-
// any response at all means something to show
127-
if (!info) {
132+
// check for errors
133+
if (typeof info.error !== "undefined") {
134+
switch (info.error) {
135+
case 1:
136+
errorMessage = lang.error_file_name_empty;
137+
break;
138+
case 3:
139+
errorMessage = lang.error_file_empty;
140+
break;
141+
default:
142+
errorMessage = lang.error_file_does_not_exist;
143+
break;
144+
}
145+
146+
$fileInfo.html(errorMessage);
128147
return;
148+
} else {
149+
$fileInfo.html("")
129150
}
130151

131152
/*

Upload/admin/jscripts/asb/asb_scripts.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Upload/admin/styles/default/asb/global.css

+6
Original file line numberDiff line numberDiff line change
@@ -212,4 +212,10 @@ td.off {
212212
.asb_label a:active {
213213
color: #333;
214214
text-decoration: none;
215+
}
216+
217+
#file_info {
218+
color: red;
219+
font-weight: bold;
220+
margin-bottom: 5px;
215221
}

Upload/inc/languages/english/admin/asb.lang.php

+3
Original file line numberDiff line numberDiff line change
@@ -365,5 +365,8 @@
365365
$l['asb_ajax_actions'] = 'actions';
366366
$l['asb_ajax_hooks'] = 'hooks';
367367
$l['asb_ajax_templates'] = 'templates';
368+
$l['asb_ajax_file_name_empty'] = 'no file name';
369+
$l['asb_ajax_file_does_not_exist'] = 'file does not exist';
370+
$l['asb_ajax_file_empty'] = 'file empty or corrupted';
368371

369372
?>

Upload/inc/languages/english/admin/asb_addon.lang.php

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
$l['asb_latest_threads_replies'] = 'Replies:';
117117
$l['asb_latest_threads_views'] = 'Views:';
118118
$l['asb_latest_threads_no_threads'] = 'There are no threads to display.';
119-
$l['asb_latest_threads'] = 'Latest Threads';
120119
$l['asb_gotounread'] = 'Go to first unread post';
121120

122121
// * settings

Upload/inc/languages/english/asb_addon.lang.php

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
$l['asb_latest_threads_replies'] = 'Replies:';
117117
$l['asb_latest_threads_views'] = 'Views:';
118118
$l['asb_latest_threads_no_threads'] = 'There are no threads to display.';
119-
$l['asb_latest_threads'] = 'Latest Threads';
120119
$l['asb_gotounread'] = 'Go to first unread post';
121120

122121
// * settings

Upload/inc/plugins/asb.php

+13-12
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,32 @@
1414

1515
// for modules
1616
define('IN_ASB', true);
17-
define('ASB_MODULES_DIR', MYBB_ROOT . 'inc/plugins/asb/modules');
18-
define('ASB_VERSION', '3.1.14');
17+
define('ASB_MODULES_DIR', MYBB_ROOT.'inc/plugins/asb/modules');
18+
define('ASB_VERSION', '3.1.15');
1919
define('ASB_CUSTOM_VERSION', '2.0');
2020
define('ASB_SCRIPT_VERSION', '2.0');
2121

2222
// register custom class autoloader
2323
spl_autoload_register('asbClassAutoload');
2424

2525
// some basic functions used everywhere
26-
require_once MYBB_ROOT . 'inc/plugins/asb/functions.php';
26+
require_once MYBB_ROOT.'inc/plugins/asb/functions.php';
2727

2828
// load the install/admin routines only if in ACP.
2929
if (defined('IN_ADMINCP')) {
30-
require_once MYBB_ROOT . 'inc/plugins/asb/acp.php';
30+
require_once MYBB_ROOT.'inc/plugins/asb/acp.php';
3131
} else {
32-
require_once MYBB_ROOT . 'inc/plugins/asb/forum.php';
32+
require_once MYBB_ROOT.'inc/plugins/asb/forum.php';
3333
}
3434

35-
/**
36-
* class autoloader
37-
*
38-
* @param string the name of the class to load
39-
*/
40-
function asbClassAutoload($className) {
41-
$path = MYBB_ROOT . "inc/plugins/asb/classes/{$className}.php";
35+
/**
36+
* class autoloader
37+
*
38+
* @param string the name of the class to load
39+
*/
40+
function asbClassAutoload($className)
41+
{
42+
$path = MYBB_ROOT."inc/plugins/asb/classes/{$className}.php";
4243

4344
if (file_exists($path)) {
4445
require_once $path;

0 commit comments

Comments
 (0)