[svn r12048] replace a hardcoded string by a language var

skala
Julian Prud'homme 19 years ago
parent 84a849abbc
commit 5cec5529d8
  1. 4
      main/exercice/exercice.php

@ -24,7 +24,7 @@
* @author Olivier Brouckaert, original author
* @author Denes Nagy, HotPotatoes integration
* @author Wolfgang Schneider, code/html cleanup
* @version $Id: exercice.php 11898 2007-04-06 09:06:17Z elixir_inter $
* @version $Id: exercice.php 12048 2007-04-18 08:08:26Z elixir_julian $
*/
@ -567,7 +567,7 @@ if($show == 'test'){
$sqlquery = "SELECT count(*) FROM $TBL_EXERCICE_QUESTION WHERE `exercice_id` = '$exid'";
$sqlresult =mysql_query($sqlquery);
$rowi = mysql_result($sqlresult,0);
echo $rowi.' Questions'; ?> </td>
echo $rowi.' '.strtolower(get_lang('Questions')); ?> </td>
<td width="12%" align="center"><a href="admin.php?exerciseId=<?php echo $row[id]; ?>"><img src="../img/wizard_small.gif" border="0" title="<?php echo htmlentities(get_lang('Build')); ?>" alt="<?php echo htmlentities(get_lang('Build')); ?>" /></a>
<a href="exercice.php?choice=delete&exerciseId=<?php echo $row[id]; ?>" onclick="javascript:if(!confirm('<?php echo addslashes(htmlentities(get_lang('AreYouSureToDelete'))); echo " ".$row['title']; echo "?"; ?>')) return false;"> <img src="../img/delete.gif" border="0" alt="<?php echo htmlentities(get_lang('Delete')); ?>" /></a>
<?php

Loading…
Cancel
Save