Increase changelog display limit from 30 to 100 entries in user index page

This commit is contained in:
Peca 2025-08-15 17:47:12 +02:00
commit 7dbb74b6bf

View file

@ -22,7 +22,7 @@ if ($user == 'admin') {
if ($show_changelog_value_int==1) {
$changelog='';
$changelog_arr=file("/usr/local/vesta/Changelog.md");
for ($i=0; $i<30; $i++) {
for ($i=0; $i<100; $i++) {
if (trim($changelog_arr[$i])=="") break;
if ($i>1) $changelog.="\n";
$changelog.=$changelog_arr[$i];