Skip to content

Commit

Permalink
removed call by reference
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrgay committed Feb 11, 2016
1 parent 827cf81 commit 84ee363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/classes/testQuestions.class.php
Expand Up @@ -285,7 +285,7 @@ function test_qti_export($tid, $test_title='', $zipfile = null){
$coursesDAO = new CoursesDAO();
$course_row = $coursesDAO->get($_course_id);
$course_language = $course_row['primary_language'];
$courseLanguage =& $languageManager->getLanguage($course_language);
$courseLanguage = $languageManager->getLanguage($course_language);
$course_language_charset = $courseLanguage->getCharacterSet();
$imported_files;
$zipflag = false;
Expand Down

0 comments on commit 84ee363

Please sign in to comment.