diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-08-15 02:06:06 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-08-15 02:06:06 +0000 |
commit | 48c6d7e8a4d5b44a6c5c6fa919267d098ed28ee7 (patch) | |
tree | 3db23f90be4b39dbe3f25aef0df3c56774106fca /include/config_default.inc.php | |
parent | bc1f5319b151c22cd0bed853fc940617e700a29f (diff) |
feature 519: quick search (first version)
git-svn-id: http://piwigo.org/svn/trunk@1537 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 2f573cc5a..e906fca06 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -206,7 +206,7 @@ $conf['mail_options'] = false; $conf['send_bcc_mail_webmaster'] = false; // enabled_format_email: -// on true email will be formatted with name and address +// on true email will be formatted with name and address // on false email will be only address // There are webhosting wich not allow email formatted (Lycos, ...) $conf['enabled_format_email'] = true; @@ -473,6 +473,14 @@ $conf['tag_url_style'] = 'id-tag'; // cloud. Only the most represented tags will be shown $conf['full_tag_cloud_items_number'] = 200; +// menubar_tag_cloud_items_number: number of tags to show in the tag +// cloud in the menubar. Only the most represented tags will be shown +$conf['menubar_tag_cloud_items_number'] = 100; + +// content_tag_cloud_items_number: number of tags to show in the tag +// cloud on the content page. Only the most represented tags will be shown +$conf['content_tag_cloud_items_number'] = 12; + // tags_levels: number of levels to use for display. Each level is bind to a // CSS class tagLevelX. $conf['tags_levels'] = 5; @@ -505,7 +513,7 @@ $conf['nbm_treatment_timeout_default'] = 20; // Step 1, default_admin_layout is not defined // null value, user_layout is used for admin layout // defined value, this value are used for admin layout -// Next on step 2, default_admin_layout will be used +// Next on step 2, default_admin_layout will be used // if there are not checked like admin layout // stored on user informations //$conf['default_admin_layout']='yoga/dark'; |