Skip to content

Commit 8a7d106

Browse files
authored
Merge pull request #276 from JoomJunk/development
Update to v8.1.7
2 parents 1068a0b + 279cb61 commit 8a7d106

File tree

9 files changed

+663
-46
lines changed

9 files changed

+663
-46
lines changed

changelog.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
- -> Removed
1515
! -> Note
1616

17+
Version 8.1.7
18+
$ Updated NL language file (thanks Peter)
19+
# Fixed disabled button not reverting on error
20+
# Fixed layout rendering if 3PD's have extended JLayoutBase
21+
1722
Version 8.1.6
1823
# Fixed some instances where the Ajax request URL wasn't working
1924

mod_shoutbox/helper.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,11 +1135,12 @@ public function renderPost($shout, $layout = 'message')
11351135
'module' => 'mod_shoutbox',
11361136
'client' => 0
11371137
);
1138+
11381139
$registry = new JRegistry($options);
11391140
$layout = new JJShoutboxLayoutFile($layout, null, $registry);
1140-
$output = $layout->render($data);
1141+
$layout->addIncludePaths(JPATH_SITE . '/modules/mod_shoutbox/layouts');
11411142

1142-
return $output;
1143+
return $layout->render($data);
11431144
}
11441145

11451146
/**

mod_shoutbox/language/nl-NL/nl-NL.mod_shoutbox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,12 @@ SHOUT_TIME_AGO="geleden"
164164
SHOUT_TIME_DAY="dag"
165165
SHOUT_TIME_DAYS="dagen"
166166
SHOUT_TIME_HOUR="uur"
167-
SHOUT_TIME_HOURS="ueren"
167+
SHOUT_TIME_HOURS="uren"
168168
SHOUT_TIME_JUST_NOW="direct"
169169
SHOUT_TIME_MINUTE="minuut"
170170
SHOUT_TIME_MINUTES="minuten"
171171
SHOUT_TIME_MONTH="maand"
172-
SHOUT_TIME_MONTHS="months"
172+
SHOUT_TIME_MONTHS="maanden"
173173
SHOUT_TIME_SECOND="seconde"
174174
SHOUT_TIME_SECONDS="seconden"
175175
SHOUT_TIME_WEEK="week"

0 commit comments

Comments
 (0)