Skip to content

Commit

Permalink
Merge pull request #62 from yyusufnas/main
Browse files Browse the repository at this point in the history
Race Condition Lang Update
  • Loading branch information
mozlercelik authored Feb 25, 2024
2 parents 0d71cfa + cd5bc7f commit 20667a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/lab/race-condition/race-condition1/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require("../../../lang/lang.php");
$strings = tr();

include( "baglanti.php" );
include( "connection.php" );

if ($_SERVER["REQUEST_METHOD"] == "POST") {
$ad = htmlspecialchars($_POST['ad']);
Expand Down Expand Up @@ -101,7 +101,7 @@

<div style="margin-top: 10px;"></div>

<a href="kayitlar.php" class="btn btn-danger btn-primary-sm"><?php echo $strings['registers']; ?></a>
<a href="registers.php" class="btn btn-danger btn-primary-sm"><?php echo $strings['registers']; ?></a>
</div>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<?php

include( "baglanti.php" );
include( "connection.php" );

session_start();
$email = isset($_SESSION['email']) ? $_SESSION['email'] : ''; // If email is set, assign it to $email, otherwise assign it an empty string
Expand Down

0 comments on commit 20667a1

Please sign in to comment.