Changeset 2459 for tags/release-1_7_2


Ignore:
Timestamp:
Jul 24, 2008, 11:07:46 PM (16 years ago)
Author:
plg
Message:

New version 1.7.2 hard coded.

Stable release required modifications: don't show version and generation
time in footer, don't check the upgrade feed, don't die on sql errors.

Location:
tags/release-1_7_2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tags/release-1_7_2/include/config_default.inc.php

    r2283 r2459  
    154154// show_version : shall the version of PhpWebGallery be displayed at the
    155155// bottom of each page ?
    156 $conf['show_version'] = true;
     156$conf['show_version'] = false;
    157157
    158158
     
    295295// This configuration parameter is set to true in BSF branch and to false
    296296// elsewhere.
    297 $conf['check_upgrade_feed'] = true;
     297$conf['check_upgrade_feed'] = false;
    298298
    299299// rate_items: available rates for a picture
     
    417417
    418418// show_gt : display generation time at the bottom of each page
    419 $conf['show_gt'] = true;
     419$conf['show_gt'] = false;
    420420
    421421// debug_l10n : display a warning message each time an unset language key is
     
    424424
    425425// die_on_sql_error: if an SQL query fails, should everything stop?
    426 $conf['die_on_sql_error'] = true;
     426$conf['die_on_sql_error'] = false;
    427427
    428428// +-----------------------------------------------------------------------+
  • tags/release-1_7_2/include/constants.php

    r1937 r2459  
    2626
    2727// Default settings
    28 define('PHPWG_VERSION', 'branch 1.7');
     28define('PHPWG_VERSION', '1.7.2');
    2929define('PHPWG_DOMAIN', 'phpwebgallery.net');
    3030define('PHPWG_URL', 'http://www.'.PHPWG_DOMAIN);
  • tags/release-1_7_2/tools/create_listing_file.php

    r2338 r2459  
    3232// ****** Gallery configuration ****** //
    3333// Script version
    34 $conf['version'] = 'branch 1.7';
     34$conf['version'] = '1.7.2';
    3535
    3636// URL of main gallery
Note: See TracChangeset for help on using the changeset viewer.