Skip to content

Commit

Permalink
Removed source name from deletion URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehdi Mehtarizadeh committed Mar 3, 2022
1 parent e46678a commit 836bcfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Views/Source/List.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<a href="<?php echo base_url($controllerName. '/Update'). "/" . $source['source_id']; ?>" data-toggle="tooltip" data-placement="top" title="Edit Source">
<i class="fa fa-edit text-warning"></i>
</a>
<a href="<?php echo base_url($controllerName.'/Delete'). "/" . $source['source_id'] . "/" . $source['name']; ?>" data-toggle="tooltip" data-placement="top" title="Delete Source">
<a href="<?php echo base_url($controllerName.'/Delete'). "/" . $source['source_id'] ?>" data-toggle="tooltip" data-placement="top" title="Delete Source">
<i class="fa fa-trash text-danger"></i>
</a>
</td>
Expand Down

0 comments on commit 836bcfd

Please sign in to comment.