Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartlomiej Dworak authored and Bartlomiej Dworak committed Mar 11, 2015
2 parents 44d9d20 + e98078a commit 1b27b9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/controllers/AdminBudgetController.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function approve(){
//must provide request id, comments and budget approval
//Post data
$comment = Input::get('requestComment');
$amount = floatval(Input::get('budgetAmount'));
$amount = floatval(str_replace(",","",Input::get('budgetAmount')));
$budgetID = Input::get('requestID');
//Pull the budget request
$request = BudgetRequest::find($budgetID);
Expand Down
3 changes: 2 additions & 1 deletion app/views/admin/projects/overview.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
Actions <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Create Budget</a></li>
<!-- <li><a href="#">Create Budget</a></li> -->
<li><a href="{{URL::route("project.dashboard",$project->id)}}">Project Dashboard</a></li>
<li><a href="{{URL::route("admin.orders",array('ipro'=>$project->id, 'status'=>'', 'semester'=>'', 'filters'=>'1'))}}">View Orders</a></li>
<li><a href="{{URL::route("admin.accounts.editor",$project->id)}}">Account Editor</a></li>
<li><a href="{{URL::route("project.groupmanager",$project->id)}}">Group Manager</a></li>
Expand Down

0 comments on commit 1b27b9d

Please sign in to comment.