Hi,
I was running into issues with the link_to() helper when trying to extract this value from the database "webspherelogs/2006/03/30/self2-stage-preview.1143762986".
the link_to($app->getLogFile(), $app->getLogFile())was not working propely. The name of the link was showing up properly, but link was being trucancated. It was only showing "webspherelogs/2006".
I dont know if this is a bug or not.
So i replaced this line of code with the following html.
<td> <a href=<?php echo $app->getLogFile() ?> > <?php echo $app->getLogFile() ?> </a></td>
Oscar