Skip to content

Commit aeb85c6

Browse files
author
Mark Vincent
authored
Merge pull request #296 from WildcardSearch/maintenance
3.1.11 Release
2 parents 7e004a0 + a654c02 commit aeb85c6

8 files changed

+11
-32
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Advanced-Sidebox 3.1.10
1+
## Advanced-Sidebox 3.1.11
22

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

Upload/inc/plugins/asb.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// for modules
1616
define('IN_ASB', true);
1717
define('ASB_MODULES_DIR', MYBB_ROOT . 'inc/plugins/asb/modules');
18-
define('ASB_VERSION', '3.1.10');
18+
define('ASB_VERSION', '3.1.11');
1919
define('ASB_CUSTOM_VERSION', '2.0');
2020
define('ASB_SCRIPT_VERSION', '2.0');
2121

Upload/inc/plugins/asb/modules/latest_threads.php

+4-5
Original file line numberDiff line numberDiff line change
@@ -326,17 +326,16 @@ function asb_latest_threads_get_threadlist($settings, $width)
326326
$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']);
327327
$lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost']);
328328

329-
if (strlen(trim($thread['avatar'])) == 0) {
330-
$thread['avatar'] = "{$theme['imgdir']}/default_avatar.png";
331-
}
332-
333329
$settings['avatar_width'] = trim($settings['avatar_width']);
334330
if (my_strpos($settings['avatar_width'], '%') == my_strlen($settings['avatar_width']) - 1) {
335331
$settings['avatar_width'] = (int) $width * (my_substr($settings['avatar_width'], 0, my_strlen($settings['avatar_width']) - 1) / 100);
336332
}
337333
$avatar_width = (int) min($width / 2, max($width / 8, $settings['avatar_width']));
334+
335+
$avatarInfo = format_avatar($thread['avatar']);
336+
338337
$avatar = <<<EOF
339-
<img src="{$thread['avatar']}" alt="{$thread['last_post']}" title="{$thread['lastposter']}'s profile" style="width: {$avatar_width}px;"/>
338+
<img src="{$avatarInfo['image']}" alt="{$thread['last_post']}" title="{$thread['lastposter']}'s profile" style="width: {$avatar_width}px;"/>
340339
EOF;
341340

342341
$formatted_name = format_name($thread['lastposter'], $thread['usergroup'], $thread['displaygroup']);

Upload/inc/plugins/asb/modules/rand_quote.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,7 @@ function asb_rand_quote_get_quote($settings, $width)
303303
$parser_options = array('allow_smilies' => 1);
304304
$new_message = str_replace(array('<br />', '/me'), array('', " * {$plain_text_username}"), $parser->parse_message($new_message . ' ', $parser_options));
305305

306-
// if the user has an avatar then display it, otherwise force the default avatar.
307-
$avatar_filename = "{$theme['imgdir']}/default_avatar.png";
308-
if ($rand_post['avatar'] != '') {
309-
$avatar_filename = $rand_post['avatar'];
310-
}
306+
$avatar_filename = format_avatar($rand_post['avatar'])['image'];
311307

312308
$avatar_alt = $lang->sprintf($lang->asb_random_quote_users_profile, $plain_text_username);
313309

Upload/inc/plugins/asb/modules/staff_online_box.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -253,10 +253,7 @@ function asb_staff_online_box_get_online_staff($settings, $width)
253253
$staff_avatar_alt = $staff_avatar_title = $user['username'] . '\'s profile';
254254

255255
// if the user has an avatar then display it, otherwise force the default avatar.
256-
$staff_avatar_filename = "{$theme['imgdir']}/default_avatar.png";
257-
if ($user['avatar'] != '') {
258-
$staff_avatar_filename = $user['avatar'];
259-
}
256+
$staff_avatar_filename = format_avatar($user['avatar'])['image'];
260257

261258
// avatar properties
262259
$staff_avatar_dimensions = '100%';

Upload/inc/plugins/asb/modules/top_poster.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -329,10 +329,7 @@ function asb_top_poster_build_template($args)
329329
}
330330
}
331331

332-
$top_poster_avatar_src = "{$theme['imgdir']}/default_avatar.png";
333-
if ($user['avatar'] != '') {
334-
$top_poster_avatar_src = $user['avatar'];
335-
}
332+
$top_poster_avatar_src = format_avatar($user['avatar'])['image'];
336333

337334
$settings['avatar_size'] = trim($settings['avatar_size']);
338335
if (my_strpos($settings['avatar_size'], '%') == my_strlen($settings['avatar_size']) - 1) {

Upload/inc/plugins/asb/modules/welcome_box.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,7 @@ function asb_welcome_box_build_template($args)
141141

142142
$avatar_width = (int) ($width / 5);
143143

144-
// if the user has an avatar then display it, otherwise force the default avatar.
145-
$avatar_filename = "{$theme['imgdir']}/default_avatar.png";
146-
if ($mybb->user['avatar'] != '') {
147-
$avatar_filename = $mybb->user['avatar'];
148-
}
144+
$avatar_filename = format_avatar($mybb->user['avatar'])['image'];
149145

150146
$user_avatar = <<<EOF
151147
<span style="float: right;"><img src="{$avatar_filename}" width="{$avatar_width}" alt="{$mybb->user['username']}'s profile"/>&nbsp;</span>

Upload/inc/plugins/asb/modules/whosonline.php

+1-7
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,7 @@ function asb_whosonline_get_online_members($settings, $width)
242242
$user['profilelink'] = get_profile_link($user['uid']);
243243

244244
if ($settings['show_avatars']) {
245-
// If the user has an avatar then display it . . .
246-
if ($user['avatar'] != '') {
247-
$avatar_filename = $user['avatar'];
248-
} else {
249-
// . . . otherwise force the default avatar.
250-
$avatar_filename = "{$theme['imgdir']}/default_avatar.png";
251-
}
245+
$avatar_filename = format_avatar($user['avatar'])['image'];
252246

253247
$avatar_height_style = " min-height: {$avatar_height}px; max-height: {$avatar_height}px;";
254248
$avatar_width_style = " min-width: {$avatar_width}px; max-width: {$avatar_width}px;";

0 commit comments

Comments
 (0)