Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
YetiForce CRM ver. 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszkrzaczkowski committed Mar 13, 2020
1 parent 9b475ff commit fc54a56
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
14 changes: 7 additions & 7 deletions config/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Debug
/** Enable saving logs to file. Values: false/true */
public static $LOG_TO_FILE = false;

/** Enable saving logs profiling. Values: false/true */
/** Enable saving logs profiling. Values: false/true */
public static $LOG_TO_PROFILE = false;

/** Level of saved/displayed logs. Values: false = All / 3 = error and warning / ["error", "warning", "info", "trace", "profile"] */
Expand All @@ -41,10 +41,10 @@ class Debug
/** List of IP addresses allowed to display debug console. Values: false = All IPS / "192.168.1.10" / ["192.168.1.10","192.168.1.11"] */
public static $DEBUG_CONSOLE_ALLOWED_IPS = false;

/** List of user ids allowed to display debug console. */
/** List of user IDs allowed to display debug console. */
public static $DEBUG_CONSOLE_ALLOWED_USERS = [];

/** Stop the running process of the system if there is and error in sql query */
/** Stop the running process of the system if there is an error in sql query */
public static $SQL_DIE_ON_ERROR = false;

/** Debug cron => cache/logs/cron/ */
Expand All @@ -59,7 +59,7 @@ class Debug
/** Do not show Smarty Notice in phpError.log */
public static $SMARTY_ERROR_REPORTING = E_ALL & ~E_NOTICE;

/** Turn on/off debug errors javascript */
/** Turn on/off error debugging in javascript */
public static $JS_DEBUG = true;

/** Displays information about the tracking code when an error occurs. Available only with the active SQL_DIE_ON_ERROR = true */
Expand All @@ -84,13 +84,13 @@ class Debug
*/
public static $EXCEPTION_ERROR_LEVEL = 32759;

/** API - Sabre dav - This is a flag that allow or not showing file, line and code of the exception in the returned XML */
/** API - Sabre dav - This is a flag that allows (or not) showing file, line, and code of the exception in the returned XML */
public static $DAV_DEBUG_EXCEPTIONS = false;

/** Activate the plugin recording log in DAV */
public static $DAV_DEBUG_PLUGIN = false;

/** Show errors messages in web service */
/** Show error messages in web service */
public static $WEBSERVICE_SHOW_ERROR = false;

/** Web service logs */
Expand All @@ -107,7 +107,7 @@ class Debug

/**
* Activate this option if logs should be written to per-user directories.
* Data will only be logged if a directry cache/logs/<username>/ exists and is writable.
* Data will only be logged if a directory cache/logs/<username>/ exists and is writable.
*/
public static $ROUNDCUBE_PER_USER_LOGGING = false;

Expand Down
22 changes: 11 additions & 11 deletions config/Performance.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ class Performance
*/
public static $SQL_LOG_INCLUDE_CALLER = false;

/** If database default charset is UTF-8, set this to true This avoids executing the SET NAMES SQL for each query! */
/** If database default charset is UTF-8, set this to true. This avoids executing the SET NAMES SQL for each query! */
public static $DB_DEFAULT_CHARSET_UTF8 = true;

/** Compute list view record count while loading listview everytime. Recommended value false */
/** Compute list view record count while loading listview each time. Recommended value false */
public static $LISTVIEW_COMPUTE_PAGE_COUNT = false;

/** Enable automatic records list refreshing while changing the value of the selection list */
Expand Down Expand Up @@ -75,22 +75,22 @@ class Performance
/** The numbers of emails downloaded during one scanning */
public static $NUMBERS_EMAILS_DOWNLOADED_DURING_ONE_SCANNING = 100;

/** In how many records should the global search permissions be updated in cron */
/** The maximum number of global search permissions that cron can update during a single execution */
public static $CRON_MAX_NUMBERS_RECORD_PRIVILEGES_UPDATER = 1000000;

/** In how many records should the address book be updated in cron */
/** The maximum number of records in address book to be updated in cron */
public static $CRON_MAX_NUMBERS_RECORD_ADDRESS_BOOK_UPDATER = 10000;

/** In how many records should the label be updated in cron */
/** The maximum number of record labels that cron can update during a single execution */
public static $CRON_MAX_NUMBERS_RECORD_LABELS_UPDATER = 1000;

/** In how many mails should the send in cron (Mailer). */
/** The maximum number of emails that cron can send during a single execution. Pay attention to the server limits. */
public static $CRON_MAX_NUMBERS_SENDING_MAILS = 1000;

/** In how many sms should the send in cron. */
/** The maximum number of sms that cron can send during a single execution */
public static $CRON_MAX_NUMBERS_SENDING_SMS = 10;

/** In how many atachments should the delete in cron. */
/** The maximum number of attachments that cron can delete during a single execution */
public static $CRON_MAX_ATACHMENTS_DELETE = 1000;

/** Time to execute batch methods [min]. */
Expand All @@ -117,7 +117,7 @@ class Performance
/** Number of browsing history steps */
public static $BROWSING_HISTORY_VIEW_LIMIT = 20;

/** Days after browsing history has deleted */
/** Number of days after which browsing history will be deleted */
public static $BROWSING_HISTORY_DELETE_AFTER = 7;

/** Session handler name, handler dir: app/Session/ */
Expand Down Expand Up @@ -147,7 +147,7 @@ class Performance
/** Popover record's trigger delay in ms */
public static $RECORD_POPOVER_DELAY = 500;

/** Empty value when is not selected item in picklist dependency */
/** Empty value when there is selected item in picklist dependency */
public static $PICKLIST_DEPENDENCY_DEFAULT_EMPTY = true;

/** Number of items displayed in picklists. */
Expand All @@ -162,6 +162,6 @@ class Performance
/** Parameter defining how fields are displayed in quick create. Available values: blocks,standard */
public static $quickCreateLayout = 'blocks';

/** Value how much records can be show in report mail */
/** Number of records that can be shown in report mail */
public static $REPORT_RECORD_NUMBERS = 10;
}
2 changes: 1 addition & 1 deletion config/Security.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class Security
*/
public static $hpkpKeysHeader = [];

/** HTTP Content Security Policy response header allows web site administrators to control resources the user agent is allowed to load for a given page */
/** HTTP Content Security Policy response header allows website administrators to control resources the user agent is allowed to load for a given page */
public static $cspHeaderActive = true;

/** Enable CSRF protection */
Expand Down
2 changes: 1 addition & 1 deletion config/version.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

return [
'appVersion' => '5.2.181',
'appVersion' => '5.3.0',
'patchVersion' => '2020.03.13',
'lib_roundcube' => '0.0.87'
];

0 comments on commit fc54a56

Please sign in to comment.