vmsreeram / moodle-qtype_essayannotate

A moodle question plugin that supports PDF annotation
0 stars 0 forks source link

Redundant variable creation #4

Closed nideez45 closed 7 months ago

nideez45 commented 7 months ago

$attemptid = $attemptobj->get_attemptid(); -> 104 of annotator.php, check if redundant

vmsreeram commented 7 months ago
-$attemptid = $attemptobj->get_attemptid();
+$attemptid = (string)$attemptid;