Skip to content

Commit

Permalink
Fixed the mispelled redirect functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
rasseljandavid committed Jul 26, 2011
1 parent bd2a086 commit 70926fe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ public function toggle_default() {
}

public function showall() {
redirct_to(array('controller'=>'order_status', 'action'=>'manage'));
redirect_to(array('controller'=>'order_status', 'action'=>'manage'));
}

public function show() {
redirct_to(array('controller'=>'order_status', 'action'=>'manage'));
redirect_to(array('controller'=>'order_status', 'action'=>'manage'));
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public function manage() {
}

public function showall() {
redirct_to(array('controller'=>'order_type', 'action'=>'manage'));
redirect_to(array('controller'=>'order_type', 'action'=>'manage'));
}

public function show() {
redirct_to(array('controller'=>'order_type', 'action'=>'manage'));
redirect_to(array('controller'=>'order_type', 'action'=>'manage'));
}

public function update() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public function manage() {
}

public function showall() {
redirct_to(array('controller'=>'product_status', 'action'=>'manage'));
redirect_to(array('controller'=>'product_status', 'action'=>'manage'));
}

public function show() {
redirct_to(array('controller'=>'product_status', 'action'=>'manage'));
redirect_to(array('controller'=>'product_status', 'action'=>'manage'));
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public function manage() {
}

public function showall() {
redirct_to(array('controller'=>'sales_rep', 'action'=>'manage'));
redirect_to(array('controller'=>'sales_rep', 'action'=>'manage'));
}

public function show() {
redirct_to(array('controller'=>'sales_rep', 'action'=>'manage'));
redirect_to(array('controller'=>'sales_rep', 'action'=>'manage'));
}

/*public function update() {
Expand Down

0 comments on commit 70926fe

Please sign in to comment.