Skip to content

Commit

Permalink
Import csv: course id is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
jmontoyaa committed Oct 21, 2019
1 parent 9a6c1ec commit 49ad04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/inc/lib/career.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ public static function renderDiagramByColumn($careerInfo, $tpl, $loadUserIdData
} else {
// Course block (row_123 id)
if (!empty($explode[0])) {
$simpleFirstConnection = 'v'.(int) $explode[0];
$simpleFirstConnection = 'v'.$explode[0];
}
}
} else {
Expand Down

0 comments on commit 49ad04e

Please sign in to comment.