mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-25 05:49:12 -04:00
item and comment data. Whew! It's not pretty yet. And you have to manually update the index currently in admin/maintenance. But it works.
13 lines
352 B
PHP
13 lines
352 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<form action="<?= url::site("search") ?>" id="gSearchForm">
|
|
<ul>
|
|
<li>
|
|
<label for="gSearch"><?= t("Search the gallery") ?></label>
|
|
<input type="text" name="q" id="gSearch"/>
|
|
</li>
|
|
<li>
|
|
<input type="submit" value="<?= t("Go") ?>" />
|
|
</li>
|
|
</ul>
|
|
</form>
|