Commit: 32a0841f3c4bd0c4149f86d283fba2aa00b2ed43 Author: Hannes Magnusson <[email protected]> Fri, 26 Sep 2014 09:40:26 -0700 Parents: c22c59d9ed18b009481a6a4c6c7e6f155c41164c Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=32a0841f3c4bd0c4149f86d283fba2aa00b2ed43 Log: Remove conference option and direct people to mail in the event Changed paths: M submit-event.php Diff: diff --git a/submit-event.php b/submit-event.php index 4c4d083..da88a5d 100644 --- a/submit-event.php +++ b/submit-event.php @@ -142,9 +142,10 @@ if ($process) { // No form data to process else { - echo "<p>\n Have an upcoming PHP user group meeting? Holding a PHP training session?\n" . - " Submit your event here, and after it has been approved, it will be listed on\n" . - " the PHP.net homepage and appear in our full event listings.\n</p>"; + echo "<p>\n Have an upcoming PHP user group meeting?\n" . + " Submit your event here, and after it has been approved, it will be listed in\n" . + " our event calendar.\n</p>"; + echo "<p>Please note that conference submissions should be emailed to [email protected]</p>\n"; } // Display errors if found @@ -230,7 +231,7 @@ if ($process && count($errors) === 0) { <td> <select name="category" class="max"> <?php - $cat = array("- Select a category -", "User Group Event", "Conference", "Training"); + $cat = array("- Select a category -", "User Group Event", 3 => "Training"); // 2 = conference.. which should be on php.net/conferences instead display_options($cat, $_POST['category']); ?> </select> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
