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 { ...@@ -47,12 +47,20 @@ class Company {
} }
} }
function asVar() { function getInfo() {
return $this->getForm()->getClean();
}
function getName() {
return $this->getVar('name'); return $this->getVar('name');
} }
function getInfo() { function asVar() {
return $this->getForm()->getClean(); return $this->getName();
}
function __toString() {
return $this->getName();
} }
/** /**
......
</div> </div>
</div> </div>
<div id="footer"> <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> <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">Powered by osTicket</a> <a id="poweredBy" href="http://osticket.com" target="_blank">Helpdesk software - powered by osTicket</a>
</div> </div>
<div id="overlay"></div> <div id="overlay"></div>
<div id="loading"> <div id="loading">
<h4>Please Wait!</h4> <h4>Please Wait!</h4>
<p>Please wait... it will take a second!</p> <p>Please wait... it will take a second!</p>
</div> </div>
</body> </body>
</html> </html>
</div> </div>
<div id="footer"> <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> </div>
<?php <?php
if(is_object($thisstaff) && $thisstaff->isStaff()) { ?> 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