today I had my second workshop with CMSMS within the last two weeks for the launch of a 0.13 website - the other was a 1.0b6 website but not worth mentioning. After the first workshop the project-manager approached me and asked if it would be possible to replace the website-title with the menu-text in the overview. He said he had difficulties all the time in figuring out which page to edit but only because he was not familiar with the title-tag content. The same happened today when an editor came up with the same idea - for a different project. So I changed that as well. It is pretty simple to do in listcontent.php on line 159 (if I am not mistaken):
Code: Select all
if ($display == 'edit')
// $thelist .= "<a href=\"editcontent.php?content_id=".$one->Id()."&page=".$page."\">".$one->Name()."</a></td>\n";
$thelist .= "<a href=\"editcontent.php?content_id=".$one->Id()."&page=".$page."\">".$one->MenuText()."</a></td>\n";
else
// $thelist .= $one->Name()."</td>\n";
$thelist .= $one->MenuText()."</td>\n";
Actually I think those two things should definitely be changed to MenuText because I must admit that I sometimes have to look up the MenuText as well to see where the page belongs. It would make CMSMS more useable.
Regards,
Nils