Created
April 4, 2013 13:29
-
-
Save EdwardIII/5310340 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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