/[drupal]/contributions/modules/nodewords/nodewords.admin.inc
ViewVC logotype

Diff of /contributions/modules/nodewords/nodewords.admin.inc

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

revision 1.1.2.108 by kiam, Mon Nov 23 08:28:09 2009 UTC revision 1.1.2.109 by kiam, Thu Nov 26 18:01:22 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: nodewords.admin.inc,v 1.1.2.107 2009/11/23 00:28:12 kiam Exp $  // $Id: nodewords.admin.inc,v 1.1.2.108 2009/11/23 08:28:09 kiam Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 134  function nodewords_pages_overview_submit Line 134  function nodewords_pages_overview_submit
134   */   */
135  function nodewords_pages_edit($form_state, $page = NULL) {  function nodewords_pages_edit($form_state, $page = NULL) {
136    if (!isset($page)) {    if (!isset($page)) {
137      $page = new stdClass();      $page = (object) array(
138      $page->name = t('Custom page');        'name' => t('Custom page'),
139      $page->path = '';        'path' => '',
140      $page->weight = 0;        'weight' => 0,
141      $page->enabled = 1;        'enabled' => 1,
142      $page->tags = array();        'tags' => array(),
143        );
144    }    }
145    else {    else {
146      $form['pid'] = array(      $form['pid'] = array(

Legend:
Removed from v.1.1.2.108  
changed lines
  Added in v.1.1.2.109

  ViewVC Help
Powered by ViewVC 1.1.3