Skip to content

Commit

Permalink
Fixed broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
cydrobolt committed Mar 3, 2014
1 parent 1a29cad commit 0052f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/createurl.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<?php
if(!filterurl($_POST['urlr'])) {
echo "You entered an invalid url<br>";
echo "<a href='index.html'>Back</a>";
echo "<a href='index.php'>Back</a>";
die();
}
$urlr = $_POST['urlr'];
Expand All @@ -36,7 +36,7 @@
foreach ($isshort as $url_shorteners) {
if(strstr($urlr, $url_shorteners)) {
echo "You entered an already shortened URL.<br>";
echo "<a href='index.html'>Back</a>";
echo "<a href='index.php'>Back</a>";
die();
}
}
Expand Down

0 comments on commit 0052f51

Please sign in to comment.