You are here

function JSimpleXMLElement::removeAttribute in Ubercart 5

Removes an attribute from the element

Parameters

string $name:

File

uc_store/includes/simplexml.php, line 528

Class

JSimpleXMLElement
SimpleXML Element

Code

function removeAttribute($name) {
  unset($this->_attributes[$name]);
}