WARNING using menu function of AGI class

Hi,

Here is my code snippet:

$menu = array( ‘9’=>‘/home/message_in_a_bottle/MIBFr/MIBconfirm3a’, ‘1’=>‘/home/message_in_a_bottle/MIBFr/MIBconfirm3b’, ‘7’=>‘/home/message_in_a_bottle/MIBFr/MIBconfirm3c’, ‘2’=>‘’, ‘3’=>‘’, ‘4’=>‘’, ‘5’=>‘’, ‘6’=>‘’, ‘8’=>‘’);

$PRESS = $AGI->menu($menu, $timeout = 5000);

I use ‘2’=>‘’, ‘3’=>‘’, ‘4’=>‘’ … etc. because i want the values of those digits to be captured. But I am getting an error on the console that reads as follows:

– Playing ‘/home/message_in_a_bottle/MIBFr/MIBconfirm3b’ (escape_digits=917234568) (sample_offset 0)
– Playing ‘/home/message_in_a_bottle/MIBFr/MIBconfirm3c’ (escape_digits=917234568) (sample_offset 0)
[Apr 13 11:28:09] WARNING[5638]: file.c:589 ast_openstream_full: File 917234568 does not exist in any format
[Apr 13 11:28:09] WARNING[5638]: file.c:589 ast_openstream_full: File 917234568 does not exist in any format
[Apr 13 11:28:09] WARNING[5638]: file.c:589 ast_openstream_full: File 917234568 does not exist in any format
[Apr 13 11:28:09] WARNING[5638]: file.c:589 ast_openstream_full: File 917234568 does not exist in any format
[Apr 13 11:28:09] WARNING[5638]: file.c:589 ast_openstream_full: File 917234568 does not exist in any format
[Apr 13 11:28:09] WARNING[5638]: file.c:589 ast_openstream_full: File 917234568 does not exist in any format

The string “917234568” is the menu choices I provide as you can see. Anyone have any idea why these warnings would appear? Is there anyway to supress the warnings? i.e. the ‘@’ symbol in php.

Thanks