Let findBrokenAssets.pl display the className of broken assets. Thanks Knowmad!

This commit is contained in:
Colin Kuskie 2010-09-20 09:19:01 -07:00
parent 2766b72d29
commit 317a4d759a
2 changed files with 4 additions and 0 deletions

View file

@ -10,6 +10,7 @@
- fixed #11868: WebGUI::Session::Form::validToken throws unnecessary warnings
- fixed #11875: Error loading empty module
- fixed #11873: findBrokenAssets.pl doesn't support custom assets
- added findBrokenAssets.pl shows the classname of broken assets (William McKee, Knowmad Technologies)
7.10.0
- fixed #11812: Checking www_ajaxSave's response in the cart js, urlencoding post parameters

View file

@ -132,6 +132,9 @@ while ( my %row = $sth->hash ) {
printf "%10s: %s\n", "revised", scalar( localtime $row{revisionDate} );
}
# Classname
printf "%10s: %s\n", "class", $row{className};
# Parent
if ( my $parent = WebGUI::Asset->newByDynamicClass( $session, $row{parentId} ) ) {
printf "%10s: %s (%s)\n", "parent", $parent->getTitle, $parent->getId;