Update of /cvsroot/stack/stack-1-0/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10711/scripts
Modified Files:
stackDatabase.php
Log Message:
Index: stackDatabase.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/scripts/stackDatabase.php,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** stackDatabase.php 20 Oct 2005 12:53:36 -0000 1.53
--- stackDatabase.php 27 Oct 2005 14:39:22 -0000 1.54
***************
*** 222,225 ****
--- 222,226 ----
// Show which quizzes a question is used.
$usage = stack_db_quiz_question_use_report($row[0]);
+ if (FALSE === $usages) { $usages = '[UNUSED]'; }
echo " <td colspan='2'><font size='1'>$usage</font></td>\n";
echo "</tr>\n";
***************
*** 1665,1669 ****
}
} else {
! $usages = '[Unused]';
}
--- 1666,1670 ----
}
} else {
! $usages = FALSE;
}
|