CC-3032: Airtime -> Help -> About. shows variable name instead of value

- fixed
This commit is contained in:
james 2011-11-16 16:46:54 -05:00
parent 5711d25bad
commit 1f9b2559ab
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ class DashboardController extends Zend_Controller_Action
public function aboutAction() public function aboutAction()
{ {
// action body $this->view->airtime_version = Application_Model_Preference::GetAirtimeVersion();
} }
} }

View file

@ -1,7 +1,7 @@
<div class="text-content"> <div class="text-content">
<h2>About</h2> <h2>About</h2>
<p> <p>
<a href="http://airtime.sourcefabric.org">Airtime</a> <?php echo AIRTIME_VERSION ?>, the open radio software for scheduling and remote station management.<br> <a href="http://airtime.sourcefabric.org">Airtime</a> <?php echo $this->airtime_version ?>, the open radio software for scheduling and remote station management.<br>
© 2011 <a href="http://www.sourcefabric.org">Sourcefabric</a> o.p.s 2011. Airtime is distributed under the <a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">GNU GPL v.3</a> © 2011 <a href="http://www.sourcefabric.org">Sourcefabric</a> o.p.s 2011. Airtime is distributed under the <a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">GNU GPL v.3</a>
</p> </p>
</div> </div>