1: <?php
2:
3: /*
4: * RSS deprecated functions
5: */
6:
7: class RSS_internal_deprecations {
8:
9: /**
10: * @deprecated
11: * @since 1.4.6
12: */
13: static function getRSSLink($option) {
14: deprecated_functions::notify(sprintf(gettext('The %1$s feed is deprecated.'), $option));
15: }
16:
17: }
18:
19: ?>