Skip to content

Commit

Permalink
Merge pull request #18 from greenreader9/dev
Browse files Browse the repository at this point in the history
Update wording/grammer
  • Loading branch information
mahtab2003 authored Aug 3, 2022
2 parents 456518a + 1ab2511 commit b4ccd53
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions template/page/user/view_account.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<?php $time = $data['account_time'] + 3600; ?>
<?php if($time > time()): ?>
<div class="alert alert-success">
Some of the features may not work. It can take upto 72 hours for the account to work correctly...
Some features may not work correctly. It can take up to 72 hours for this account to work properly...
</div>
<?php endif; ?>
<?php if($data['account_status'] === 'pending'): ?>
Expand All @@ -51,11 +51,11 @@
</div>
<?php elseif($data['account_status'] === 'suspended'): ?>
<div class="alert alert-danger">
This account is suspended due to some reason and will be completely removed with in 60 days...
This account is suspended for an unknown reason and will be completely removed within 60 days...
</div>
<?php elseif($data['account_status'] === 'deactivated'): ?>
<div class="alert alert-success">
This account is deactivated and will be completely removed with in 60 days...
This account is deactivated and will be completely removed within 60 days...
</div>
<?php endif; ?>
<div class="row row-cards">
Expand Down Expand Up @@ -376,4 +376,4 @@
hide.classList.toggle('d-none');
});
}
</script>
</script>
6 changes: 3 additions & 3 deletions template/page/user/view_ticket.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
</div>
<div class="col-sm-6">
<div class="row align-items-center">
<span class="col">Open by:</span>
<span class="col">Opened by:</span>
<span class="col-auto ms-auto"><?= $this->user->get_name() ?></span>
</div>
</div>
<div class="col-sm-6">
<div class="row align-items-center">
<span class="col">Open at:</span>
<span class="col">Opened at:</span>
<span class="col-auto ms-auto"><?= date('d-m-Y', $ticket['ticket_time']) ?></span>
</div>
</div>
Expand Down Expand Up @@ -166,4 +166,4 @@
.catch( err => {
console.error( err.stack );
} );
</script>
</script>

0 comments on commit b4ccd53

Please sign in to comment.