<?php
function zing_tickets_footer() {
$bail_out = ( ( defined( 'WP_ADMIN' ) && WP_ADMIN == true ) || ( strpos( $_SERVER[ 'PHP_SELF' ], 'wp-admin' ) !== false ) );
if ( $bail_out ) return;
//Please contact us if you wish to remove the Zingiri logo in the footer
$f='<center style="margin-top:0px;font-size:small">';
$f.='Wordpress and osTicket integration by <a href="http://www.zingiri.net">Zingiri</a>';
$f.='</center>';
return $f;
}