- partially implemented site reputation (required to grant privileges to comments) - reworked 'home'-page (the news-box is now as configurable as you want) - removed some ancient compatibility-code for IE67 (srsly, its 2014!) - dropped associated stylesheets, reviewed the rest - split some user-restrictions to trigger on insufficient siteRep - added text-page: Markup-Guide - implemented new class to handle Markup - bugfixes [TM] - also you will need to reapply the db-dumps (you may want do save account*, news, reports, ..)
17 lines
557 B
PHP
17 lines
557 B
PHP
new Listview({
|
|
template:'replypreview',
|
|
<?php
|
|
echo !isset($params['id']) ? "id:'comment-replies'," : null;
|
|
echo !isset($params['name']) ? "name:LANG.tab_commentreplies," : null;
|
|
echo !isset($params['parent']) ? "parent:'lv-generic'," : null;
|
|
|
|
foreach ($params as $k => $v):
|
|
if ($v[0] == '$'):
|
|
echo $k.':'.substr($v, 1).',';
|
|
elseif ($v):
|
|
echo $k.":'".$v."',";
|
|
endif;
|
|
endforeach;
|
|
?>
|
|
data:<?php echo json_encode(array_values($data), JSON_NUMERIC_CHECK); ?>
|
|
});
|