Ignore:
Timestamp:
Feb 22, 2011, 3:50:46 PM (13 years ago)
Author:
patdenice
Message:

Extended description now work on page title.
Language restriction is now optionnal.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/AdditionalPages/admin/upgrade.inc.php

    r9323 r9350  
    133133}
    134134
     135if (!isset($conf['AP']['language_perm']))
     136{
     137  $query = '
     138SELECT id
     139FROM '.$prefixeTable.'additionalpages
     140WHERE lang IS NOT NULL
     141;';
     142  $ids = array_from_query($query, 'id');
     143
     144  $conf['AP']['language_perm'] = !empty($ids);
     145
     146  conf_update_param('additional_pages', pwg_db_real_escape_string(serialize($conf['AP']))); 
     147}
     148
    135149?>
Note: See TracChangeset for help on using the changeset viewer.