Skip to content
Snippets Groups Projects
Commit b6df489d authored by Jared Hancock's avatar Jared Hancock
Browse files

Merge pull request #586 from protich/feature/copyright


Use the company name on the copyright notice.

Reviewed-By: default avatarJared Hancock <jared@osticket.com>
parents 6d87b967 378ded5e
No related branches found
No related tags found
No related merge requests found
......@@ -47,12 +47,20 @@ class Company {
}
}
function asVar() {
function getInfo() {
return $this->getForm()->getClean();
}
function getName() {
return $this->getVar('name');
}
function getInfo() {
return $this->getForm()->getClean();
function asVar() {
return $this->getName();
}
function __toString() {
return $this->getName();
}
/**
......
</div>
</div>
<div id="footer">
<p>Copyright &copy; <?php echo date('Y'); ?> <a href="http://osticket.com" target="_blank" title="osTicket">osTicket.com</a> - All rights reserved.</p>
<a id="poweredBy" href="http://osticket.com" target="_blank">Powered by osTicket</a>
<p>Copyright &copy; <?php echo date('Y'); ?> <?php echo $ost->company :? 'osTicket.com'; ?> - All rights reserved.</p>
<a id="poweredBy" href="http://osticket.com" target="_blank">Helpdesk software - powered by osTicket</a>
</div>
<div id="overlay"></div>
<div id="loading">
<h4>Please Wait!</h4>
<p>Please wait... it will take a second!</p>
</div>
</div>
</body>
</html>
</html>
</div>
<div id="footer">
Copyright &copy; 2006-<?php echo date('Y'); ?>&nbsp;osTicket.com. &nbsp;All Rights Reserved.
Copyright &copy; 2006-<?php echo date('Y'); ?>&nbsp;<?php echo $ost->company ?: 'osTicket.com'; ?>&nbsp;All Rights Reserved.
</div>
<?php
if(is_object($thisstaff) && $thisstaff->isStaff()) { ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment