1--TEST-- 2Bug #55371 (get_magic_quotes_gpc() and get_magic_quotes_runtime() throw deprecated warning) 3--FILE-- 4<?php 5 6get_magic_quotes_gpc(); 7get_magic_quotes_runtime(); 8 9echo 'done'; 10 11?> 12--EXPECTF-- 13Deprecated: Function get_magic_quotes_gpc() is deprecated in %s on line %d 14 15Deprecated: Function get_magic_quotes_runtime() is deprecated in %s on line %d 16done 17