Resolved Issue ID 0000447:

o Fix Incorrect Tag Translations 



git-svn-id: http://piwigo.org/svn/trunk@1452 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub
2006-07-09 09:04:22 +00:00
parent 73d44f9784
commit e40f590bbd
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1756,7 +1756,7 @@ function tag_id_from_tag_name($tag_name)
$tag_name = mysql_escape_string($tag_name);
}
// does the tag already exist?
// does the tag already exists?
$query = '
SELECT id
FROM '.TAGS_TABLE.'
+3 -3
View File
@@ -78,7 +78,7 @@ SELECT id, name
array_push(
$page['errors'],
sprintf(
l10n('Tag "%s" already exist'),
l10n('Tag "%s" already exists'),
$tag_name
)
);
@@ -158,7 +158,7 @@ if (isset($_POST['add']) and !empty($_POST['add_tag']))
$tag_name = mysql_escape_string($_POST['add_tag']);
}
// does the tag already exist?
// does the tag already exists?
$query = '
SELECT id
FROM '.TAGS_TABLE.'
@@ -192,7 +192,7 @@ SELECT id
array_push(
$page['errors'],
sprintf(
l10n('Tag "%s" already exist'),
l10n('Tag "%s" already exists'),
$tag_name
)
);