make the english make sense in the context
This commit is contained in:
13
query.php
13
query.php
@ -23,7 +23,18 @@
|
||||
|
||||
$res = getwallpapers("https://wallhaven.cc/api/v1/search?q=".$_GET["q"]."&purity=".$purity."&categories=".$categories."&page=".$page);
|
||||
/* explain query */
|
||||
printf("<div id='queryinfo'><p>%s Wallpapers found for \"<a href='/query.php?q=%s'>%s</a>\"</p></div>", $res[1]["total"], $_GET["q"], humanquery($_GET["q"], $_GET["NSFW"] ? true : false));
|
||||
/* HACK: really disgusting code might make it better but for now it works */
|
||||
printf("<div id='queryinfo'>");
|
||||
$humanreadable = humanquery($_GET["q"], $_GET["NSFW"] ? true : false);
|
||||
if (!$_GET["q"])
|
||||
printf("<p>%s Wallpapers found", $res[1]["total"]);
|
||||
else {
|
||||
if (preg_match("/like:/", $_GET["q"]))
|
||||
printf("<p>%s Wallpapers found \"<a href='/query.php?q=%s'>%s</a>\"</p>", $res[1]["total"], $_GET["q"], $humanreadable);
|
||||
else
|
||||
printf("<p>%s Wallpapers found for \"<a href='/query.php?q=%s'>%s</a>\"</p>", $res[1]["total"], $_GET["q"], $humanreadable);
|
||||
}
|
||||
printf("</div>");
|
||||
|
||||
/* display wallpapers */
|
||||
printf("<div id='wallpapers'>\n");
|
||||
|
Reference in New Issue
Block a user