Commit: 2f2d99f80c770fd6d60b650bffe5a81acaa16b8f Author: Eli White <[email protected]> Sat, 15 Apr 2017 10:29:48 -0400 Parents: eedd72847a9553774ed85e76751b3ec836665e5a Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=2f2d99f80c770fd6d60b650bffe5a81acaa16b8f Log: Fixing a problem that existed with the News Creation tool. A formatting change that was thought to not affect anything functionally (changing some spacing of an option), ended up causing conference announcements to not appear on the website. Changed paths: M bin/createNewsEntry Diff: diff --git a/bin/createNewsEntry b/bin/createNewsEntry index 4b3b4c0..4489c2d 100755 --- a/bin/createNewsEntry +++ b/bin/createNewsEntry @@ -49,7 +49,7 @@ $categories = array( array("frontpage" => "PHP.net frontpage news"), array("releases" => "New PHP release"), array("conferences" => "Conference announcement"), - array("cfp " => "Call for Papers"), + array("cfp" => "Call for Papers"), ); $confs = array(2, 3); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
