mirror of
https://github.com/myvesta/vesta
synced 2025-08-20 21:34:12 -07:00
Increase changelog display limit from 30 to 100 entries in user index page
This commit is contained in:
parent
930bf7ed2b
commit
7dbb74b6bf
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue