summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xclasses/feeds.php2
-rw-r--r--classes/pref/labels.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 3c6c20f26..58d4f68d9 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -633,7 +633,7 @@ class Feeds extends Handler_Protected {
$tmp_content .= "<img src='images/tag.png' alt='Tags' title='Tags'>
<span id=\"ATSTR-$id\">$tags_str</span>
<a title=\"".__('Edit tags for this article')."\"
- href=\"#\" onclick=\"Article.editArticleTags($id)\">(+)</a>";
+ href=\"#\" onclick=\"Article.editTags($id)\">(+)</a>";
$num_comments = (int) $line["num_comments"];
$entry_comments = "";
diff --git a/classes/pref/labels.php b/classes/pref/labels.php
index c52f8bd79..49118ab4a 100644
--- a/classes/pref/labels.php
+++ b/classes/pref/labels.php
@@ -275,7 +275,7 @@ class Pref_Labels extends Handler_Protected {
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
print "</div></div>";
- print"<button dojoType=\"dijit.form.Button\" onclick=\"return addLabel()\">".
+ print"<button dojoType=\"dijit.form.Button\" onclick=\"CommonDialogs.addLabel()\">".
__('Create label')."</button dojoType=\"dijit.form.Button\"> ";
print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('labelTree').removeSelected()\">".
@@ -323,4 +323,4 @@ class Pref_Labels extends Handler_Protected {
print "</div>"; #container
}
-} \ No newline at end of file
+}