Skip to content

Commit

Permalink
remove print_r, forgot to remove when testing output
Browse files Browse the repository at this point in the history
  • Loading branch information
DH-MP committed Apr 8, 2012
1 parent f93fffa commit e0d7d36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = '';
$db['default']['password'] = 'root';
$db['default']['database'] = 'pasta';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
Expand Down
3 changes: 1 addition & 2 deletions application/controllers/schedulebuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ public function save_schedule(){
$schedule = $this->input->post("courses");
$season = $this->input->post("season");
$year = date("Y");

print_r($schedule);

if($season == 2){
$year = (date('n') > '9' ? $year+1 : $year);
}
Expand Down

0 comments on commit e0d7d36

Please sign in to comment.