Skip to content

Commit

Permalink
minor comment updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla committed Nov 1, 2014
1 parent bd4a074 commit a98c8b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gravityforms-multiple-form-instances.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Gravity_Forms_Multiple_Form_Instances {
/**
* Constructor.
*
* Used to initialize the plugin.
* Used to initialize the plugin and hook the related functionality.
*
* @access public
*/
Expand All @@ -35,7 +35,7 @@ function __construct() {
* @return string $form_string The modified form HTML string.
*/
function gform_get_form_filter($form_string, $form) {
// if form has been submitted, use the submitted ID, otherwise generate unique ID
// if form has been submitted, use the submitted ID, otherwise generate a new unique ID
if (isset($_POST['gform_random_id'])) {
$random_id = $_POST['gform_random_id'];
} else {
Expand Down

0 comments on commit a98c8b4

Please sign in to comment.