Skip to content

Commit

Permalink
Fix comment error and uppercase error
Browse files Browse the repository at this point in the history
  • Loading branch information
DidierViret committed Jan 12, 2022
2 parents 53b0927 + 01ac870 commit 3f6362e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions orif/common/Views/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

<title><?php
if (!isset($title) || is_null($title) || $title == '') {
echo lang('Common_lang.page_prefix');
echo lang('common_lang.page_prefix');
} else {
echo lang('Common_lang.page_prefix').' - '.$title;
echo lang('common_lang.page_prefix').' - '.$title;
}
?></title>

Expand Down
1 change: 0 additions & 1 deletion orif/user/Views/admin/list_user.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
<?php foreach($users as $user) { ?>
<tr>
<td><a href="<?= base_url('user/admin/save_user/'.$user['id']); ?>"><?= esc($user['username']); ?></td>
<!--<td><?php// esc($user['email']); ?></td> -->
<td><?= $user_types[$user['fk_user_type']]; ?></td>
<td><?= lang($user['archive'] ? 'common_lang.no' : 'common_lang.yes'); ?></td>
<td><a href="<?= base_url('user/admin/delete_user/'.$user['id']); ?>" class="close">×</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ var OperationalCompetenceView = function (_React$Component3) {
_createClass(OperationalCompetenceView, [{
key: 'render',
value: function render() {
console.log(this.props.operationalCompetenceDatas);
if (this.props.mobiledisplay) {
return React.createElement(
'div',
Expand Down

0 comments on commit 3f6362e

Please sign in to comment.