Let findBrokenAssets.pl display the className of broken assets. Thanks Knowmad!
This commit is contained in:
parent
500f7a6d73
commit
c141978be1
2 changed files with 4 additions and 0 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
- fixed #11868: WebGUI::Session::Form::validToken throws unnecessary warnings
|
- fixed #11868: WebGUI::Session::Form::validToken throws unnecessary warnings
|
||||||
- fixed #11875: Error loading empty module
|
- fixed #11875: Error loading empty module
|
||||||
- fixed #11873: findBrokenAssets.pl doesn't support custom assets
|
- 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
|
7.10.0
|
||||||
- fixed #11812: Checking www_ajaxSave's response in the cart js, urlencoding post parameters
|
- fixed #11812: Checking www_ajaxSave's response in the cart js, urlencoding post parameters
|
||||||
|
|
|
||||||
|
|
@ -132,6 +132,9 @@ while ( my %row = $sth->hash ) {
|
||||||
printf "%10s: %s\n", "revised", scalar( localtime $row{revisionDate} );
|
printf "%10s: %s\n", "revised", scalar( localtime $row{revisionDate} );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Classname
|
||||||
|
printf "%10s: %s\n", "class", $row{className};
|
||||||
|
|
||||||
# Parent
|
# Parent
|
||||||
if ( my $parent = WebGUI::Asset->newByDynamicClass( $session, $row{parentId} ) ) {
|
if ( my $parent = WebGUI::Asset->newByDynamicClass( $session, $row{parentId} ) ) {
|
||||||
printf "%10s: %s (%s)\n", "parent", $parent->getTitle, $parent->getId;
|
printf "%10s: %s (%s)\n", "parent", $parent->getTitle, $parent->getId;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue