No that's not been implemented as when you add the stock back in it automatically emails the people who requested the stock notify, but does not email the admin, sorry.
Also the admin does not know who has requested the stock notify unless you look in the mysql data (xcart_email_for_changed_products), i did not make a back end admin section to look at what emails have requested the change in the product stock or details or price.
The table in the mysql you need to look for that stores the email and product details is:
Code:
CREATE TABLE xcart_email_for_changed_products (
productid int(11) NOT NULL default '0' ,
email varchar(128) NOT NULL default '' ,
descr text NOT NULL default '' ,
fulldescr text NOT NULL default '' ,
price decimal(12,2) NOT NULL default '0.00' ,
avail int(11) NOT NULL default '0' ,
PRIMARY KEY (productid,email)
) TYPE=MyISAM;
Here is an example of one of the entrys:
HTML Code:
INSERT INTO xcart_email_for_changed_products VALUES (16296, 'someones_email@I have deleted.com', '<b>Syrian shisha pipe</b>, elegant in style, fully working shisha pipe.<br><br> Please allow 7 days for delivery on this product.', '<b>Syrian shisha pipe</b>, elegant in style, fully working shisha pipe.<br><br> Please allow 7 days for delivery on this product.', '120.00', 0);
And when you edit the product in admin, either the descr (Description), fulldescr (Full Description), price (The Price) or avail (Stock level from 0 to a greater number) a email will be sent out automatically.
It would not be hard to make a back end admin section to view the emails and products that have been requested for by email address (Look at the wish list code - php and tpl), but i just don't have the time to do this yet, sorry.