Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Created April 4, 2013 13:29
Show Gist options
  • Save EdwardIII/5310340 to your computer and use it in GitHub Desktop.
Save EdwardIII/5310340 to your computer and use it in GitHub Desktop.
<?php
class Mage_Rss_Block_Catalog_NotifyStock extends Mage_Rss_Block_Abstract
{
# snip
public function getNotifyStockQty()
{
if ($this->getUseConfigNotifyStockQty()) {
return (float) Mage::getStoreConfig(self::XML_PATH_NOTIFY_STOCK_QTY);
}
return (float) $this->getData('notify_stock_qty');
}
# snip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment