diff -r 877f952ae2bd -r 6b6c2214f778 web/lib/Zend/Gdata/Analytics/Extension/Metric.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Gdata/Analytics/Extension/Metric.php Thu Mar 21 19:52:38 2013 +0100 @@ -0,0 +1,54 @@ +localName) { + case 'name': + $this->_name = $attribute->nodeValue; + break; + case 'value': + $this->_value = $attribute->nodeValue; + break; + default: + parent::takeAttributeFromDOM($attribute); + } + } +}