Skip to content

Commit

Permalink
Merge pull request #2 from Gnouc/master
Browse files Browse the repository at this point in the history
Fix mistypo in navigator
  • Loading branch information
phamios committed May 19, 2014
2 parents dde1d09 + f939c4c commit 6d497e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/controllers/admincp/review.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function create() {
$this->load->model('features_model');
if (isset($_REQUEST['submit_review'])) {

$title = $this->input->post('title', true);
$title = $this->input->post('title', true);
$category = $this->input->post('category', true);
$userid = $this->session->userdata('adminid');
$specs = $this->input->post('specs', true);
Expand Down
2 changes: 1 addition & 1 deletion application/views/widget/navigator.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class="label label-inverse pull-right"></span>
<ul class="collapse" id="component-nav-review">
<li><a href="<?php echo base_url('admincp/review_cate') ?>"><i class="icon-angle-right"></i> List cate </a></li>
<li><a href="<?php echo base_url('admincp/review_cate/create') ?>"><i class="icon-angle-right"></i> Add category</a></li>
<li><a href="<?php echo base_url('admincp/reivew') ?>"><i class="icon-angle-right"></i> List news </a></li>
<li><a href="<?php echo base_url('admincp/review') ?>"><i class="icon-angle-right"></i> List news </a></li>
<li><a href="<?php echo base_url('admincp/review/create') ?>"><i class="icon-angle-right"></i> Add news </a></li>
</ul>
</li>
Expand Down

0 comments on commit 6d497e3

Please sign in to comment.