minimal changes (lang, small tpl change and quick search on tag url names in addition to name - handy with accentuated letters)

git-svn-id: http://piwigo.org/svn/trunk@1906 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices 2007-03-14 23:50:21 +00:00
commit b654fdac56
3 changed files with 11 additions and 8 deletions

View file

@ -385,10 +385,13 @@ SELECT id
$q_like_clause = get_qsearch_like_clause($q, 'CONVERT(name, CHAR)' );
if (!empty($q_like_clause))
{
// search also by url name (without accents)
$q_like_clause_url = get_qsearch_like_clause($q, 'url_name' );
$query = '
SELECT id
FROM '.TAGS_TABLE.'
WHERE '.$q_like_clause;
WHERE '.$q_like_clause.'
OR '.$q_like_clause_url;
$tag_ids = array_from_query( $query, 'id');
if (!empty($tag_ids))
{ // we got some tags

View file

@ -85,7 +85,7 @@ $lang['Elements'] = 'Elements';
$lang['Email administrators when a new user registers'] = 'Email admins when a new user registers';
$lang['Email administrators when a valid comment is entered'] = 'Email admins when a valid comment is entered';
$lang['Email administrators when a comment requires validation'] = 'Email admins when a comment requires validation';
$lang['Email administrators when a picture is uploaded'] = 'Email adminis when a picture is uploaded';
$lang['Email administrators when a picture is uploaded'] = 'Email admins when a picture is uploaded';
$lang['Empty caddie'] = 'Empty caddie';
$lang['Environment'] = 'Environment';
$lang['Expand all categories'] = 'Expand all categories';

View file

@ -52,16 +52,16 @@
</li>
<li>
<label>
<span class="property">{lang:Email administrators when a new user registers}</span>
<input type="checkbox" name="email_admin_on_new_user" {main.EMAIL_ADMIN_ON_NEW_USER} />
<label for="allow_user_registration">
<span class="property">{lang:Allow user registration}</span>
<input type="checkbox" name="allow_user_registration" id="allow_user_registration" {main.ALLOW_USER_REGISTRATION} />
</label>
</li>
<li>
<label for="allow_user_registration">
<span class="property">{lang:Allow user registration}</span>
<input type="checkbox" name="allow_user_registration" id="allow_user_registration" {main.ALLOW_USER_REGISTRATION} />
<label>
<span class="property">{lang:Email administrators when a new user registers}</span>
<input type="checkbox" name="email_admin_on_new_user" {main.EMAIL_ADMIN_ON_NEW_USER} />
</label>
</li>