Changeset 5740


Ignore:
Timestamp:
Apr 9, 2010, 8:01:14 PM (14 years ago)
Author:
plg
Message:

bug 1589: remove obsolete .csvignore file

Location:
trunk
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/photos_add_direct.php

    r5195 r5740  
    357357  );
    358358
     359// $page['thumbnails'] = array(
     360//   array(
     361//     'src' => 'http://localhost/piwigo/dev/trunk/upload/2006/08/16/thumbnail/TN-20060816234638-f9bebf5a.jpg',
     362//     ),
     363//   array(
     364//     'src' => 'http://localhost/piwigo/dev/trunk/upload/2005/10/04/thumbnail/TN-20051004000000-864a003c.jpg',
     365//     ),
     366//   );
     367// $page['batch_link'] = PHOTOS_ADD_BASE_URL.'&batch=1460,3307';
     368
    359369if (isset($page['thumbnails']))
    360370{
  • trunk/admin/themes/default/template/photos_add_direct.tpl

    r5737 r5740  
    149149  <p id="batchLink"><a href="{$batch_link}">{$batch_label}</a></p>
    150150</fieldset>
    151 {/if}
     151<p><a href="">Add another set of photos</a></p>
     152{else}
    152153
    153154<div id="formErrors" class="errors" style="display:none">
     
    241242{/if}
    242243</form>
    243 {/if}
     244{/if} {* empty($thumbnails) *}
     245{/if} {* $setup_errors *}
    244246
    245247</div> <!-- photosAddContent -->
  • trunk/install/config.sql

    r5340 r5740  
    1919INSERT INTO piwigo_config (param,value,comment) VALUES ('allow_user_registration','true','allow visitors to register?');
    2020INSERT INTO piwigo_config (param,value,comment) VALUES ('allow_user_customization','true','allow users to customize their gallery?');
    21 INSERT INTO piwigo_config (param,value,comment) VALUES ('nbm_send_html_mail','true','Send mail on HTML format for notification by mail');
     21INSERT INTO piwigo_config (param,value,comment) VALUES ('nbm_send_html_mail','false','Send mail on HTML format for notification by mail');
    2222INSERT INTO piwigo_config (param,value,comment) VALUES ('nbm_send_mail_as','','Send mail as param value for notification by mail');
    2323INSERT INTO piwigo_config (param,value,comment) VALUES ('nbm_send_detailed_content','true','Send detailed content for notification by mail');
  • trunk/tools/convert_language_to_2.1.pl

    r5563 r5740  
    9393        'The next step of the installation is now possible' => '',
    9494        'next step' => '',
     95        'install_end_message' => '',
    9596    }
    9697);
  • trunk/tools/missing_keys.pl

    r5559 r5740  
    1515load_registered_keys($type);
    1616
    17 # foreach my $key (sort keys %used_keys) {
    18 #     # print "{".$key."}", ' is used', "\n";
     17foreach my $key (sort keys %used_keys) {
     18    # print "{".$key."}", ' is used', "\n";
    1919
    20 #     if (not defined $registered_keys{$key}) {
    21 #         # print "{".$key."}", ' is missing', "\n";
    22 #         print '$lang[\''.$key.'\'] = \''.$key.'\';', "\n";
    23 #     }
    24 # }
     20    if (not defined $registered_keys{$key}) {
     21        # print "{".$key."}", ' is missing', "\n";
     22        print '$lang[\''.$key.'\'] = \''.$key.'\';', "\n";
     23    }
     24}
    2525
    2626my %ignore_keys = (
     
    7575
    7676
    77 foreach my $key (sort keys %registered_keys) {
    78     if (not defined $used_keys{$key} and not defined $ignore_keys{$key}) {
    79         print "{".$key."}", ' is not used anywhere', "\n";
    80     }
    81 }
     77# foreach my $key (sort keys %registered_keys) {
     78#     if (not defined $used_keys{$key} and not defined $ignore_keys{$key}) {
     79#         print "{".$key."}", ' is not used anywhere', "\n";
     80#     }
     81# }
    8282
    8383sub used_keys {
Note: See TracChangeset for help on using the changeset viewer.