Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stevotvr committed Jan 6, 2018
1 parent 968fd98 commit 8b0043c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion controller/acp_cats_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function edit_cat($cat_id)
'U_ACTION' => $this->u_action . '&action=edit_cat&cat_id=' . $cat_id,
));
}
catch(base $e)
catch (base $e)
{
trigger_error($e->get_message($this->language));
}
Expand Down
4 changes: 2 additions & 2 deletions controller/acp_flair_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function edit_flair($flair_id)
'U_ACTION' => $this->u_action . '&action=edit&cat_id=' . $entity->get_category() . '&flair_id=' . $flair_id,
));
}
catch(base $e)
catch (base $e)
{
trigger_error($e->get_message($this->language));
}
Expand Down Expand Up @@ -407,7 +407,7 @@ public function delete_flair($flair_id)

trigger_error($this->language->lang('ACP_FLAIR_DELETE_SUCCESS') . adm_back_link($this->u_action . '&cat_id=' . $entity->get_category()));
}
catch(base $e)
catch (base $e)
{
trigger_error($e->get_message($this->language));
}
Expand Down
2 changes: 1 addition & 1 deletion controller/acp_main_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function display_flair()
{
$cat_name = $this->container->get('stevotvr.flair.entity.category')->load($cat_id)->get_name();
}
catch(base $e)
catch (base $e)
{
trigger_error($e->get_message($this->language));
}
Expand Down

0 comments on commit 8b0043c

Please sign in to comment.