/[drupal]/contributions/modules/fivestar/includes/fivestar.color.inc
ViewVC logotype

Diff of /contributions/modules/fivestar/includes/fivestar.color.inc

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

revision 1.2, Wed Jul 1 01:16:09 2009 UTC revision 1.3, Tue Nov 3 04:43:37 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: fivestar.color.inc,v 1.1 2009/05/11 04:25:09 quicksketch Exp $  // $Id: fivestar.color.inc,v 1.2 2009/07/01 01:16:09 quicksketch Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 53  function fivestar_preview_color() { Line 53  function fivestar_preview_color() {
53   */   */
54  function fivestar_color_form() {  function fivestar_color_form() {
55    $form = array(    $form = array(
     '#submit' => array('fivestar_color_form_submit'),  
56      '#tree' => FALSE,      '#tree' => FALSE,
57      '#theme' => 'fivestar_color_form',      '#theme' => 'fivestar_color_form',
58      '#type' => 'fieldset',      '#type' => 'fieldset',
# Line 143  function fivestar_color_form() { Line 142  function fivestar_color_form() {
142   * Theme color form.   * Theme color form.
143   */   */
144  function theme_fivestar_color_form($form) {  function theme_fivestar_color_form($form) {
145    if ($form['#access'] == FALSE) {    if (isset($form['#access']) && $form['#access'] == FALSE) {
146      return '';      return '';
147    }    }
148    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.2