Skip to content

Commit

Permalink
Merge pull request #47 from kaligula-eu/master
Browse files Browse the repository at this point in the history
you did some things ok
  • Loading branch information
saintly2k authored Sep 9, 2022
2 parents ae7c9ab + 34c52b8 commit dcb66b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions render/public/home.req.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@
<th style="width:5%"><?= $lang["home"]["chapter"] ?></th>
<th style="width:20%;"><?= $lang["home"]["chap_title"] ?></th>
<th style="width:20%"><?= $lang["home"]["title"] ?></th>
<th class="text-center" style="width:15%"><?= $lang["home"]["group"] ?></th>
<th class="text-center" style="width:20%"><?= $lang["home"]["group"] ?></th>
<th class="text-center" style="width:10%"><?= $lang["home"]["uploader"] ?></th>
<th class="text-right" style="width:20%"><?= $lang["home"]["added"] ?></th> <!-- IF ON OTHER LANGUAGES THAN ENGLISH, HERE IS AN OVERFLOW ON THE "added" TAB, IDK WHY, IF ANYONE KNOWS HOW TO FIX, PLS DO ON GITHUB.com/saintly2k/FoOlSlideX -->
<th class="text-right" style="width:15%"><?= $lang["home"]["added"] ?></th> <!-- IF ON OTHER LANGUAGES THAN ENGLISH, HERE IS AN OVERFLOW ON THE "added" TAB, IDK WHY, IF ANYONE KNOWS HOW TO FIX, PLS DO ON GITHUB.com/saintly2k/FoOlSlideX -->
</thead>
<tbody>
<?php foreach($latest_chapters as $chapter) { ?>
Expand Down
6 changes: 3 additions & 3 deletions render/public/manga.req.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

//$page = $lang["menu"]["home"];

include("../parts/header.php");

$slug = mysqli_real_escape_string($conn, $_GET["slug"]);
$manga = $conn->query("SELECT * FROM `titles` WHERE `slug`='$slug' LIMIT 1");
$manga = mysqli_fetch_assoc($manga);
Expand Down Expand Up @@ -74,6 +72,8 @@
}
}

include("../parts/header.php");

?>

<?php if(!empty($manga["id"])) { ?>
Expand Down Expand Up @@ -148,7 +148,7 @@
<thead>
<th style="width:10%"><?= $lang["home"]["chapter"] ?></th>
<th style="width:40%;"><?= $lang["home"]["chap_title"] ?></th>
<th style="width:10%" class="text-center"><?= $lang["home"]["group"] ?></th>
<th style="width:20%" class="text-center"><?= $lang["home"]["group"] ?></th>
<th style="width:10%" class="text-center"><?= $lang["home"]["uploader"] ?></th>
<th class="text-right" style="width:20%"><?= $lang["home"]["added"] ?></th>
</thead>
Expand Down

0 comments on commit dcb66b2

Please sign in to comment.