I have a php script I use to update an attribute. I have it set on ADMIN store at the moment, however I need it to update for each store that does not have default values set.
require_once('app/Mage.php');
umask(0);
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
How do I change this to either run for all stores, or get it to cycle through each store?