Skip to content

Commit

Permalink
forgot to escape some "
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpenne committed May 27, 2005
1 parent 6c643a1 commit 2a6f9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/lesson/importppt.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function extract_data($pages, $courseid, $lessonname, $modname) {
}*/
foreach ($imgs[2] as $img) {
copy($path_parts['dirname'].'/'.$img, $imagedir.'/'.$img);
$page->images[] = "<img src=\"$imagelink/$img\" title="$img" />"; // comment out this line if you are using the above foreach loop
$page->images[] = "<img src=\"$imagelink/$img\" title=\"$img\" />"; // comment out this line if you are using the above foreach loop
}
for($i = 0; $i < count($matches[1]); $i++) { // go through all of our div matches

Expand Down

0 comments on commit 2a6f9ad

Please sign in to comment.