From 7c9b5a3fe40a641af1cb6003b03b2352576a0c4b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 4 May 2017 15:57:40 +0300 Subject: move label stuff to Labels class fix some unresolved functions --- classes/opml.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'classes/opml.php') diff --git a/classes/opml.php b/classes/opml.php index a3381cc74..0671053c8 100644 --- a/classes/opml.php +++ b/classes/opml.php @@ -292,9 +292,9 @@ class Opml extends Handler_Protected { $fg_color = $this->dbh->escape_string($attrs->getNamedItem('label-fg-color')->nodeValue); $bg_color = $this->dbh->escape_string($attrs->getNamedItem('label-bg-color')->nodeValue); - if (!label_find_id($label_name, $_SESSION['uid'])) { + if (!Labels::find_id($label_name, $_SESSION['uid'])) { $this->opml_notice(T_sprintf("Adding label %s", htmlspecialchars($label_name))); - label_create($label_name, $fg_color, $bg_color, $owner_uid); + Labels::create($label_name, $fg_color, $bg_color, $owner_uid); } else { $this->opml_notice(T_sprintf("Duplicate label: %s", htmlspecialchars($label_name))); } -- cgit v1.2.3