Skip to content

Commit

Permalink
FIX: User Function Name
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Aug 26, 2023
1 parent 9a461b7 commit b2ca1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Template/config/support.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
$user = $this->user->getid();
$user = $this->user->getId();
$user2 = $this->user->getFullname();
?>
<div class="page-header" style="margin-top: 10px;">
Expand All @@ -23,7 +23,7 @@
<td class="cell-title"><?= t('Your Profile Full Name') ?></td>
<td class="cell-value value-name" width=""><?= $this->user->getFullname() ?></td>
<td class="cell-title"><?= t('Your User ID') ?></td>
<td class="cell-value value"><?= $this->user->getid() ?></td>
<td class="cell-value value"><?= $this->user->getId() ?></td>
</tr>
<tr class="support-table-row">
<td class="cell-title"><?= t('Your Role') ?></td>
Expand Down

0 comments on commit b2ca1fa

Please sign in to comment.