More syntax fixes for PHP 5.3
This commit is contained in:
parent
4b7f8abc3d
commit
b0cab62e80
2 changed files with 4 additions and 2 deletions
|
@ -249,7 +249,9 @@ $(document).ready(function() {
|
|||
<p> <a target="_blank" href="https://www.airtime.pro/pricing"><?=_("View Plans")?></a> (Opens in a new window)</p>
|
||||
-->
|
||||
<p id="current_plan"><b>Current Plan:</b>
|
||||
<?php echo(BillingController::getClientCurrentAirtimeProduct()["name"]);
|
||||
<?php
|
||||
$currentProduct = BillingController::getClientCurrentAirtimeProduct();
|
||||
echo($currentProduct["name"]);
|
||||
//echo Application_Model_Preference::GetPlanLevel();
|
||||
?>
|
||||
</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue