0
in the form for the artist bio, if I select one or more related artists everything is ok, but if you want to remove the link as I do?
Responses (9)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0this is the code in my file, but i dont see a blank space in the list
function getArtistsData() { // Lets load the data if it doesn't already exist if (empty( $this->_artists_data )){ $query = ' SELECT id,artist_name FROM #__muscol_artists '. ' WHERE id != '.$this->_id. ' ORDER BY letter,class_name'; $this->_artists_data[] = new stdClass(); $this->_db->setQuery( $query ); $this->_artists_data = $this->_db->loadObjectList(); } return $this->_artists_data; }
-
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »