Changeset 2483345
- Timestamp:
- 03/01/2021 07:48:07 AM (5 years ago)
- Location:
- contact-form-123
- Files:
-
- 4 edited
- 1 copied
-
tags/1.4 (copied) (copied from contact-form-123/trunk)
-
tags/1.4/README.txt (modified) (2 diffs)
-
tags/1.4/index.php (modified) (5 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/index.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-123/tags/1.4/README.txt
r2475206 r2483345 4 4 Requires at least: 5.6.1 5 5 Tested up to: 5.6.1 6 Stable tag: 1. 36 Stable tag: 1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 == Changelog == 23 23 24 = 1.4 = 25 * Bugs was fixed: after setup plugin, now color will be setup automatically. 26 24 27 = 1.3 = 25 28 * Bugs was fixed. -
contact-form-123/tags/1.4/index.php
r2475206 r2483345 4 4 Plugin URI: https://wordpress.org/plugins/Contact-Form-123/ 5 5 Description: simple contact form for wordpress 6 Version: 1. 36 Version: 1.4 7 7 Author: Chugaev Aleksandr Aleksandrovich 8 8 Author URI: https://profiles.wordpress.org/aleksandrposs/ 9 9 */ 10 11 10 12 11 13 function contact_form_123_add_plugin_stylesheet() { … … 27 29 dbDelta($sql); 28 30 } 31 32 29 33 } 30 34 register_activation_hook( __FILE__,'contact_form_123_install'); … … 105 109 <form method="post" id="new_message" action="/?page=contact"> 106 110 <?php 111 112 113 107 114 if ($color_scheme == "black") { 108 115 ?> … … 129 136 <p><input type="submit" value="Send Message" name="commit" id="message_submit_blue"/> 130 137 <?php 131 }; 138 } else if ($color_scheme == NULL) { 139 ?> 140 141 <p><label for="email">Your email</label><br><input type="text" name="form_msg_email" id="form_email_black" /></p> 142 <p><label for="body">Message</label><br><textarea name="form_msg_body" id="form_body_black" cols="35"></textarea></p> 143 144 <p><input type="submit" value="Send Message" name="commit" id="message_submit_black"/> 145 <?php 146 } 132 147 ?> 133 148 <center> … … 149 164 } 150 165 166 167 168 151 169 function contact_form_123_admin_page(){ 152 170 ?> -
contact-form-123/trunk/README.txt
r2475206 r2483345 4 4 Requires at least: 5.6.1 5 5 Tested up to: 5.6.1 6 Stable tag: 1. 36 Stable tag: 1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 == Changelog == 23 23 24 = 1.4 = 25 * Bugs was fixed: after setup plugin, now color will be setup automatically. 26 24 27 = 1.3 = 25 28 * Bugs was fixed. -
contact-form-123/trunk/index.php
r2475206 r2483345 4 4 Plugin URI: https://wordpress.org/plugins/Contact-Form-123/ 5 5 Description: simple contact form for wordpress 6 Version: 1. 36 Version: 1.4 7 7 Author: Chugaev Aleksandr Aleksandrovich 8 8 Author URI: https://profiles.wordpress.org/aleksandrposs/ 9 9 */ 10 11 10 12 11 13 function contact_form_123_add_plugin_stylesheet() { … … 27 29 dbDelta($sql); 28 30 } 31 32 29 33 } 30 34 register_activation_hook( __FILE__,'contact_form_123_install'); … … 105 109 <form method="post" id="new_message" action="/?page=contact"> 106 110 <?php 111 112 113 107 114 if ($color_scheme == "black") { 108 115 ?> … … 129 136 <p><input type="submit" value="Send Message" name="commit" id="message_submit_blue"/> 130 137 <?php 131 }; 138 } else if ($color_scheme == NULL) { 139 ?> 140 141 <p><label for="email">Your email</label><br><input type="text" name="form_msg_email" id="form_email_black" /></p> 142 <p><label for="body">Message</label><br><textarea name="form_msg_body" id="form_body_black" cols="35"></textarea></p> 143 144 <p><input type="submit" value="Send Message" name="commit" id="message_submit_black"/> 145 <?php 146 } 132 147 ?> 133 148 <center> … … 149 164 } 150 165 166 167 168 151 169 function contact_form_123_admin_page(){ 152 170 ?>
Note: See TracChangeset
for help on using the changeset viewer.