New upstream version 0.6.27

This commit is contained in:
geos_one
2025-08-06 18:11:51 +02:00
parent a6b4158f1f
commit 56a986c0ba
563 changed files with 45811 additions and 35282 deletions

View File

@@ -1,11 +1,11 @@
<?php if( $this->isAuthorizedFor('host_search') ){ ?>
<?php if ($this->isAuthorizedFor('host_search')) { ?>
<!-- Search Box Start -->
<div data-role="content">
<div data-role="fieldcontain">
<form action="search" method="post">
<input type="search" name="term" id="search" value="" />
<button type="submit"><?php echo Kohana::lang('common.mobile-submit')?></button>
<button type="submit"><?php echo Kohana::lang('common.mobile-submit'); ?></button>
</form>
</div>
@@ -16,8 +16,8 @@
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="a">
<?php
foreach($this->result as $host){
printf("<li><a href=\"".url::base(TRUE)."mobile/host/%s\" data-transition=\"pop\">%s</a></li>", $host, $host);
foreach ($this->result as $host) {
printf('<li><a href="' . url::base(true) . 'mobile/host/%s" data-transition="pop">%s</a></li>', $host, $host);
}
?>
</ul>