Plugin Directory

Changeset 2483345


Ignore:
Timestamp:
03/01/2021 07:48:07 AM (5 years ago)
Author:
aleksandrposs
Message:

version 1.4

Location:
contact-form-123
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • contact-form-123/tags/1.4/README.txt

    r2475206 r2483345  
    44Requires at least: 5.6.1
    55Tested up to: 5.6.1
    6 Stable tag: 1.3
     6Stable tag: 1.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222== Changelog ==
    2323
     24= 1.4 =
     25* Bugs was fixed: after setup plugin, now color will be setup automatically.
     26
    2427= 1.3 =
    2528* Bugs was fixed.
  • contact-form-123/tags/1.4/index.php

    r2475206 r2483345  
    44Plugin URI: https://wordpress.org/plugins/Contact-Form-123/
    55Description: simple contact form for wordpress
    6 Version: 1.3
     6Version: 1.4
    77Author: Chugaev Aleksandr Aleksandrovich
    88Author URI: https://profiles.wordpress.org/aleksandrposs/
    99*/
     10
     11
    1012
    1113function contact_form_123_add_plugin_stylesheet()  {
     
    2729     dbDelta($sql);
    2830 }
     31
     32 
    2933}
    3034register_activation_hook( __FILE__,'contact_form_123_install');
     
    105109  <form method="post" id="new_message" action="/?page=contact">
    106110  <?php
     111 
     112
     113 
    107114     if ($color_scheme == "black") {   
    108115   ?>
     
    129136    <p><input type="submit" value="Send Message" name="commit" id="message_submit_blue"/>
    130137  <?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  }
    132147  ?>
    133148    <center>
     
    149164}
    150165
     166
     167
     168
    151169function contact_form_123_admin_page(){ 
    152170  ?>   
  • contact-form-123/trunk/README.txt

    r2475206 r2483345  
    44Requires at least: 5.6.1
    55Tested up to: 5.6.1
    6 Stable tag: 1.3
     6Stable tag: 1.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222== Changelog ==
    2323
     24= 1.4 =
     25* Bugs was fixed: after setup plugin, now color will be setup automatically.
     26
    2427= 1.3 =
    2528* Bugs was fixed.
  • contact-form-123/trunk/index.php

    r2475206 r2483345  
    44Plugin URI: https://wordpress.org/plugins/Contact-Form-123/
    55Description: simple contact form for wordpress
    6 Version: 1.3
     6Version: 1.4
    77Author: Chugaev Aleksandr Aleksandrovich
    88Author URI: https://profiles.wordpress.org/aleksandrposs/
    99*/
     10
     11
    1012
    1113function contact_form_123_add_plugin_stylesheet()  {
     
    2729     dbDelta($sql);
    2830 }
     31
     32 
    2933}
    3034register_activation_hook( __FILE__,'contact_form_123_install');
     
    105109  <form method="post" id="new_message" action="/?page=contact">
    106110  <?php
     111 
     112
     113 
    107114     if ($color_scheme == "black") {   
    108115   ?>
     
    129136    <p><input type="submit" value="Send Message" name="commit" id="message_submit_blue"/>
    130137  <?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  }
    132147  ?>
    133148    <center>
     
    149164}
    150165
     166
     167
     168
    151169function contact_form_123_admin_page(){ 
    152170  ?>   
Note: See TracChangeset for help on using the changeset viewer.