Skip to content

Commit

Permalink
refs 1: Fix for review
Browse files Browse the repository at this point in the history
  • Loading branch information
kimicol authored and ofaurax committed Apr 29, 2024
1 parent dd2bfa6 commit 8ef2ab4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
<?php
if($token_ok)
{
echo '<input type="hidden" name="token" value="'.$token.'" />';
echo '<input type="hidden" name="token" value="'.$token.'" />';
}
?>
Programme :
Expand All @@ -193,7 +193,9 @@
$k = $m[0];
}
else
{
$k = "Autre";
}
$programmes[$k][] = $d;
}
krsort($programmes);
Expand All @@ -211,10 +213,10 @@
}
echo "<option value=\"\"";
if(substr($sv, 0, 4) != 'pgm:') echo " selected";
echo ">Tous</option>";
echo ">Tous les morceaux</option>";
?>
</select>
<input type="submit" value="Go"/>
<input type="submit" value="Voir le programme"/>
</form>
<br/>

Expand Down

0 comments on commit 8ef2ab4

Please sign in to comment.