Commit: 1681fc16c75ed514fa06a512e98016c74897e469 Author: Peter Cowburn <[email protected]> Fri, 11 Jan 2013 20:57:58 +0000 Parents: de1793d9d058f649b5716092159b5766ab02d254 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=1681fc16c75ed514fa06a512e98016c74897e469 Log: added 2013 archive page (bug #63973) Bugs: https://bugs.php.net/63973 Changed paths: A archive/2013.php Diff: diff --git a/archive/2013.php b/archive/2013.php new file mode 100644 index 0000000..faf855a --- /dev/null +++ b/archive/2013.php @@ -0,0 +1,23 @@ +<?php + +$_SERVER['BASE_PAGE'] = 'archive/2013.php'; +include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc'; +include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-news.inc'; +news_archive_sidebar(); +site_header("News Archive - 2013"); +?> + +<h1>News Archive - 2013</h1> + +<p> + Here are the most important news items we have published in 2013 on PHP.net. +</p> + +<hr /> + +<?php + +print_news($NEWS_ENTRIES, array("conferences", "cfp", "frontpage"), 50, 2013); + +site_footer(); + -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
