11 lines
238 B
Text
11 lines
238 B
Text
|
|
/**
|
|
* return the helma object publisher logo, built into hop core
|
|
* to be independent of static html-paths
|
|
*/
|
|
|
|
if ( checkAddress()==false ) return;
|
|
|
|
res.contentType = "image/gif";
|
|
res.writeBinary ( Packages.helma.util.Logo.hop );
|
|
|