/[drupal]/contributions/modules/webform/webform.module
ViewVC logotype

Diff of /contributions/modules/webform/webform.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.113.2.70.2.102, Fri Nov 6 00:39:39 2009 UTC revision 1.113.2.70.2.103, Fri Nov 6 02:01:17 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: webform.module,v 1.113.2.70.2.101 2009/11/06 00:25:46 quicksketch Exp $  // $Id: webform.module,v 1.113.2.70.2.102 2009/11/06 00:39:39 quicksketch Exp $
3    
4  /**  /**
5   * This module provides a simple way to create forms and questionnaires.   * This module provides a simple way to create forms and questionnaires.
# Line 1033  function theme_webform_view_messages($no Line 1033  function theme_webform_view_messages($no
1033    }    }
1034    
1035    // If the user has exceeded the limit of submissions, explain the limit.    // If the user has exceeded the limit of submissions, explain the limit.
1036    if ($limit_exceeded) {    elseif ($limit_exceeded) {
1037      if ($node->webform['submit_interval'] == -1 && $node->webform['submit_limit'] > 1) {      if ($node->webform['submit_interval'] == -1 && $node->webform['submit_limit'] > 1) {
1038        $message = t('You have submitted this form the maximum number of times (@count).', array('@count' => $node->webform['submit_limit']));        $message = t('You have submitted this form the maximum number of times (@count).', array('@count' => $node->webform['submit_limit']));
1039      }      }

Legend:
Removed from v.1.113.2.70.2.102  
changed lines
  Added in v.1.113.2.70.2.103

  ViewVC Help
Powered by ViewVC 1.1.2