I am becoming more and more familiar with CMSMS and have just discovered that you can set a value for how many pages should be shown in listcontent.php in admin-mode. That is great. However, if you do not want to set it by yourself (default is 20 entries) you can leave it unedited. I prefer setting it by using a parameter in the URL:
listcontent.php?limit=40 which is by far easier if you maintain large websites than paging through the content (I have admin-bookmarks disabled cause they have scared me off).
Here is what you should modify in
listcontent.php from line 116ff:
Code: Select all
$page = 1;
$limit = 20;
if (isset($_GET['page']))$page = $_GET['page'];
if (isset($_GET['limit']))$limit = $_GET['limit'];
Yet another thing I have modified is the display of MenuText instead of the Title for the current page. As far as I am concerned I can identify content much easier by knowing the menu-items (as they also appear in my sitemap).
Must be around
line 184 in listcontent.php where you should replace
echo "Id()."\">".$one->Name()."\n";
with
echo "Id()."\">".$one->MenuText()."\n";
Maybe an admin should be able to set all or some of these in the admin panel.
Regards,
Nils