From 91ba7dfaf0552980b21b3e2fc5cab8cd3cad55f6 Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Tue, 10 Jan 2017 15:20:16 +0200 Subject: [PATCH 1/3] Fixed warnig for preg_match for some class names --- application/Espo/Core/HookManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Core/HookManager.php b/application/Espo/Core/HookManager.php index 36d36e525e..6559ab781a 100644 --- a/application/Espo/Core/HookManager.php +++ b/application/Espo/Core/HookManager.php @@ -228,7 +228,7 @@ class HookManager foreach ($hookData as $key => $hookList) { foreach ($hookList as $rowHookName) { - if (preg_match('/\\'.$class.'$/', $rowHookName)) { + if (preg_match('/\\\\'.$class.'$/', $rowHookName)) { return true; } } From a3548bc19429a0f824172ee724b3fe7cbbb4007c Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Tue, 17 Jan 2017 13:59:03 +0200 Subject: [PATCH 2/3] Improved crontab command for scheduled jobs --- application/Espo/Core/Utils/ScheduledJob.php | 23 +++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/application/Espo/Core/Utils/ScheduledJob.php b/application/Espo/Core/Utils/ScheduledJob.php index 8b064dae36..75d1361cf6 100644 --- a/application/Espo/Core/Utils/ScheduledJob.php +++ b/application/Espo/Core/Utils/ScheduledJob.php @@ -54,10 +54,10 @@ class ScheduledJob ); protected $cronSetup = array( - 'linux' => '* * * * * {PHP-BIN-DIR} -f {CRON-FILE} > /dev/null 2>&1', - 'windows' => '{PHP-BIN-DIR}.exe -f {CRON-FILE}', - 'mac' => '* * * * * {PHP-BIN-DIR} -f {CRON-FILE} > /dev/null 2>&1', - 'default' => '* * * * * {PHP-BIN-DIR} -f {CRON-FILE}', + 'linux' => '* * * * * cd {DOCUMENT_ROOT}; {PHP-BIN-DIR} -f {CRON-FILE} > /dev/null 2>&1', + 'windows' => '{PHP-BIN-DIR}.exe -f {FULL-CRON-PATH}', + 'mac' => '* * * * * cd {DOCUMENT_ROOT}; {PHP-BIN-DIR} -f {CRON-FILE} > /dev/null 2>&1', + 'default' => '* * * * * cd {DOCUMENT_ROOT}; {PHP-BIN-DIR} -f {CRON-FILE} > /dev/null 2>&1', ); public function __construct(\Espo\Core\Container $container) @@ -161,14 +161,21 @@ class ScheduledJob $language = $this->getContainer()->get('language'); $OS = $this->getSystemUtil()->getOS(); - $phpBin = $this->getSystemUtil()->getPhpBin(); - $cronFile = Util::concatPath($this->getSystemUtil()->getRootDir(), $this->cronFile); $desc = $language->translate('cronSetup', 'options', 'ScheduledJob'); - $message = isset($desc[$OS]) ? $desc[$OS] : $desc['default']; + $data = array( + 'PHP-BIN-DIR' => $this->getSystemUtil()->getPhpBin(), + 'CRON-FILE' => $this->cronFile, + 'DOCUMENT_ROOT' => $this->getSystemUtil()->getRootDir(), + 'FULL-CRON-PATH' => Util::concatPath($this->getSystemUtil()->getRootDir(), $this->cronFile), + ); + $message = isset($desc[$OS]) ? $desc[$OS] : $desc['default']; $command = isset($this->cronSetup[$OS]) ? $this->cronSetup[$OS] : $this->cronSetup['default']; - $command = str_replace(array('{PHP-BIN-DIR}', '{CRON-FILE}'), array($phpBin, $cronFile), $command); + + foreach ($data as $name => $value) { + $command = str_replace('{'.$name.'}', $value, $command); + } return array( 'message' => $message, From fac5704c9eefd4449d4112552be8802bb2700130 Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Tue, 17 Jan 2017 15:07:08 +0200 Subject: [PATCH 3/3] Added 2017 year --- Gruntfile.js | 2 +- api/v1/index.php | 2 +- api/v1/portal-access/index.php | 2 +- application/Espo/Acl/Attachment.php | 2 +- application/Espo/Acl/Email.php | 2 +- application/Espo/Acl/EmailFilter.php | 2 +- application/Espo/Acl/Notification.php | 2 +- application/Espo/Acl/Team.php | 2 +- application/Espo/Acl/User.php | 2 +- application/Espo/AclPortal/Attachment.php | 2 +- application/Espo/AclPortal/Email.php | 2 +- application/Espo/AclPortal/Notification.php | 2 +- application/Espo/AclPortal/User.php | 2 +- application/Espo/Controllers/Admin.php | 2 +- application/Espo/Controllers/App.php | 2 +- application/Espo/Controllers/Attachment.php | 2 +- application/Espo/Controllers/AuthToken.php | 2 +- application/Espo/Controllers/Email.php | 2 +- application/Espo/Controllers/EmailAccount.php | 2 +- application/Espo/Controllers/EmailAddress.php | 2 +- application/Espo/Controllers/EmailFilter.php | 2 +- application/Espo/Controllers/EmailFolder.php | 2 +- .../Espo/Controllers/EmailTemplate.php | 2 +- .../Espo/Controllers/EntityManager.php | 2 +- application/Espo/Controllers/Extension.php | 2 +- .../Espo/Controllers/ExternalAccount.php | 2 +- application/Espo/Controllers/FieldManager.php | 2 +- application/Espo/Controllers/GlobalSearch.php | 2 +- application/Espo/Controllers/I18n.php | 2 +- application/Espo/Controllers/Import.php | 2 +- application/Espo/Controllers/InboundEmail.php | 2 +- application/Espo/Controllers/Integration.php | 2 +- application/Espo/Controllers/Job.php | 2 +- application/Espo/Controllers/Layout.php | 2 +- application/Espo/Controllers/Metadata.php | 2 +- application/Espo/Controllers/Note.php | 2 +- application/Espo/Controllers/Notification.php | 2 +- application/Espo/Controllers/Portal.php | 2 +- application/Espo/Controllers/PortalRole.php | 2 +- application/Espo/Controllers/Preferences.php | 2 +- application/Espo/Controllers/Role.php | 2 +- application/Espo/Controllers/ScheduledJob.php | 2 +- .../Controllers/ScheduledJobLogRecord.php | 2 +- application/Espo/Controllers/Settings.php | 2 +- application/Espo/Controllers/Stream.php | 2 +- application/Espo/Controllers/Team.php | 2 +- application/Espo/Controllers/Template.php | 2 +- application/Espo/Controllers/User.php | 2 +- application/Espo/Core/Acl.php | 2 +- application/Espo/Core/Acl/Base.php | 2 +- application/Espo/Core/Acl/Table.php | 2 +- application/Espo/Core/AclManager.php | 2 +- application/Espo/Core/AclPortal/Base.php | 2 +- application/Espo/Core/AclPortal/Table.php | 2 +- application/Espo/Core/Application.php | 2 +- application/Espo/Core/Container.php | 2 +- application/Espo/Core/ControllerManager.php | 2 +- application/Espo/Core/Controllers/Base.php | 2 +- application/Espo/Core/Controllers/Record.php | 2 +- .../Espo/Core/Controllers/RecordTree.php | 2 +- application/Espo/Core/CronManager.php | 2 +- application/Espo/Core/DataManager.php | 2 +- .../Espo/Core/Entities/CategoryTreeItem.php | 2 +- application/Espo/Core/Entities/Person.php | 2 +- application/Espo/Core/EntryPointManager.php | 2 +- application/Espo/Core/EntryPoints/Base.php | 2 +- .../Espo/Core/Exceptions/BadRequest.php | 2 +- application/Espo/Core/Exceptions/Conflict.php | 2 +- application/Espo/Core/Exceptions/Error.php | 2 +- .../Espo/Core/Exceptions/Forbidden.php | 2 +- .../Core/Exceptions/InternalServerError.php | 2 +- application/Espo/Core/Exceptions/NotFound.php | 2 +- .../Espo/Core/Exceptions/Unauthorized.php | 2 +- application/Espo/Core/ExtensionManager.php | 2 +- .../Core/ExternalAccount/ClientManager.php | 2 +- .../Core/ExternalAccount/Clients/Google.php | 2 +- .../Core/ExternalAccount/Clients/IClient.php | 2 +- .../Clients/OAuth2Abstract.php | 2 +- .../Core/ExternalAccount/OAuth2/Client.php | 2 +- .../Espo/Core/Formula/AttributeFetcher.php | 29 ++++++++++++++++++- application/Espo/Core/Formula/Evaluator.php | 29 ++++++++++++++++++- application/Espo/Core/Formula/Formula.php | 29 ++++++++++++++++++- .../Espo/Core/Formula/FunctionFactory.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/AssignType.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/AttributeType.php | 29 ++++++++++++++++++- .../Espo/Core/Formula/Functions/Base.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/BundleType.php | 29 ++++++++++++++++++- .../Functions/ComparisonGroup/Base.php | 29 ++++++++++++++++++- .../Functions/ComparisonGroup/EqualsType.php | 29 ++++++++++++++++++- .../GreaterThanOrEqualsType.php | 29 ++++++++++++++++++- .../ComparisonGroup/GreaterThanType.php | 29 ++++++++++++++++++- .../ComparisonGroup/LessThanOrEqualsType.php | 29 ++++++++++++++++++- .../ComparisonGroup/LessThanType.php | 29 ++++++++++++++++++- .../ComparisonGroup/NotEqualsType.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/ConditionType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/AddDaysType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/AddHoursType.php | 29 ++++++++++++++++++- .../DatetimeGroup/AddIntervalType.php | 29 ++++++++++++++++++- .../DatetimeGroup/AddMinutesType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/AddMonthsType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/AddWeeksType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/AddYearsType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/FormatType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/NowType.php | 29 ++++++++++++++++++- .../Functions/DatetimeGroup/TodayType.php | 29 ++++++++++++++++++- .../EntityGroup/AddLinkMultipleIdType.php | 29 ++++++++++++++++++- .../EntityGroup/AttributeFetchedType.php | 29 ++++++++++++++++++- .../Functions/EntityGroup/AttributeType.php | 29 ++++++++++++++++++- .../EntityGroup/HasLinkMultipleIdType.php | 29 ++++++++++++++++++- .../EntityGroup/IsAttributeChangedType.php | 29 ++++++++++++++++++- .../EntityGroup/IsAttributeNotChangedType.php | 29 ++++++++++++++++++- .../Functions/EntityGroup/IsNewType.php | 29 ++++++++++++++++++- .../Functions/EntityGroup/IsRelatedType.php | 29 ++++++++++++++++++- .../EntityGroup/SetAttributeType.php | 29 ++++++++++++++++++- .../Functions/EnvGroup/UserAttributeType.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/IfThenElseType.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/IfThenType.php | 29 ++++++++++++++++++- .../Functions/LogicalGroup/AndType.php | 29 ++++++++++++++++++- .../Functions/LogicalGroup/NotType.php | 29 ++++++++++++++++++- .../Formula/Functions/LogicalGroup/OrType.php | 29 ++++++++++++++++++- .../Functions/NumberGroup/FormatType.php | 29 ++++++++++++++++++- .../Functions/NumericGroup/DivisionType.php | 29 ++++++++++++++++++- .../Functions/NumericGroup/ModuloType.php | 29 ++++++++++++++++++- .../NumericGroup/MultiplicationType.php | 29 ++++++++++++++++++- .../NumericGroup/SubtractionType.php | 29 ++++++++++++++++++- .../Functions/NumericGroup/SummationType.php | 29 ++++++++++++++++++- .../Formula/Functions/SetAttributeType.php | 29 ++++++++++++++++++- .../Functions/StringGroup/ConcatenateType.php | 29 ++++++++++++++++++- .../StringGroup/ConcatenationType.php | 29 ++++++++++++++++++- .../Functions/StringGroup/SubstringType.php | 29 ++++++++++++++++++- .../Functions/StringGroup/TrimType.php | 29 ++++++++++++++++++- .../Espo/Core/Formula/Functions/ValueType.php | 29 ++++++++++++++++++- .../Core/Formula/Functions/VariableType.php | 29 ++++++++++++++++++- application/Espo/Core/Formula/Manager.php | 29 ++++++++++++++++++- application/Espo/Core/Formula/Parser.php | 29 ++++++++++++++++++- application/Espo/Core/HookManager.php | 2 +- application/Espo/Core/Hooks/Base.php | 2 +- application/Espo/Core/Htmlizer/Htmlizer.php | 2 +- .../Espo/Core/Interfaces/Injectable.php | 2 +- application/Espo/Core/Interfaces/Loader.php | 2 +- application/Espo/Core/Jobs/Base.php | 2 +- application/Espo/Core/Loaders/Base.php | 2 +- .../Espo/Core/Loaders/EmailFilterManager.php | 2 +- .../Espo/Core/Loaders/EntityManager.php | 2 +- .../Espo/Core/Loaders/EntityManagerUtil.php | 2 +- .../Espo/Core/Loaders/FormulaManager.php | 2 +- .../Espo/Core/Loaders/TemplateFileManager.php | 2 +- application/Espo/Core/Mail/FiltersMatcher.php | 2 +- application/Espo/Core/Mail/Importer.php | 2 +- .../Core/Mail/Mail/Header/XQueueItemId.php | 2 +- application/Espo/Core/Mail/Mail/Headers.php | 2 +- .../Espo/Core/Mail/Mail/Storage/Imap.php | 2 +- .../Espo/Core/Mail/Mail/Storage/Message.php | 2 +- application/Espo/Core/Mail/MessageWrapper.php | 2 +- .../Core/Mail/Parsers/PhpMimeMailParser.php | 2 +- .../Mail/Parsers/PhpMimeMailParser/Parser.php | 2 +- .../Espo/Core/Mail/Parsers/ZendMail.php | 2 +- application/Espo/Core/Mail/Sender.php | 2 +- application/Espo/Core/Notificators/Base.php | 2 +- application/Espo/Core/ORM/Entity.php | 2 +- application/Espo/Core/ORM/EntityManager.php | 2 +- .../Espo/Core/ORM/Repositories/RDB.php | 2 +- application/Espo/Core/ORM/Repository.php | 2 +- .../Espo/Core/ORM/RepositoryFactory.php | 2 +- application/Espo/Core/Pdf/Tcpdf.php | 2 +- application/Espo/Core/Portal/Acl.php | 2 +- application/Espo/Core/Portal/AclManager.php | 2 +- application/Espo/Core/Portal/Application.php | 2 +- application/Espo/Core/Portal/Container.php | 2 +- .../Espo/Core/Portal/Utils/Language.php | 2 +- application/Espo/Core/Portal/Utils/Layout.php | 2 +- .../Espo/Core/Portal/Utils/ThemeManager.php | 2 +- .../Espo/Core/Repositories/CategoryTree.php | 2 +- application/Espo/Core/Repositories/Event.php | 2 +- .../Espo/Core/SelectManagerFactory.php | 2 +- application/Espo/Core/SelectManagers/Base.php | 2 +- application/Espo/Core/ServiceFactory.php | 2 +- application/Espo/Core/Services/Base.php | 2 +- .../Espo/Core/Templates/Controllers/Base.php | 2 +- .../Core/Templates/Controllers/BasePlus.php | 2 +- .../Templates/Controllers/CategoryTree.php | 2 +- .../Core/Templates/Controllers/Company.php | 2 +- .../Espo/Core/Templates/Controllers/Event.php | 2 +- .../Core/Templates/Controllers/Person.php | 2 +- .../Espo/Core/Templates/Entities/Base.php | 2 +- .../Espo/Core/Templates/Entities/BasePlus.php | 2 +- .../Core/Templates/Entities/CategoryTree.php | 2 +- .../Espo/Core/Templates/Entities/Company.php | 2 +- .../Espo/Core/Templates/Entities/Event.php | 2 +- .../Espo/Core/Templates/Entities/Person.php | 2 +- .../Espo/Core/Templates/Repositories/Base.php | 2 +- .../Core/Templates/Repositories/BasePlus.php | 2 +- .../Templates/Repositories/CategoryTree.php | 2 +- .../Core/Templates/Repositories/Company.php | 2 +- .../Core/Templates/Repositories/Event.php | 2 +- .../Core/Templates/Repositories/Person.php | 2 +- .../Core/Templates/SelectManagers/Event.php | 2 +- .../Espo/Core/Templates/Services/Base.php | 2 +- .../Espo/Core/Templates/Services/BasePlus.php | 2 +- .../Core/Templates/Services/CategoryTree.php | 2 +- .../Espo/Core/Templates/Services/Company.php | 2 +- .../Espo/Core/Templates/Services/Event.php | 2 +- .../Espo/Core/Templates/Services/Person.php | 2 +- application/Espo/Core/UpgradeManager.php | 2 +- .../Espo/Core/Upgrades/ActionManager.php | 2 +- .../Espo/Core/Upgrades/Actions/Base.php | 2 +- .../Core/Upgrades/Actions/Base/Delete.php | 2 +- .../Core/Upgrades/Actions/Base/Install.php | 2 +- .../Core/Upgrades/Actions/Base/Uninstall.php | 2 +- .../Core/Upgrades/Actions/Base/Upload.php | 2 +- .../Upgrades/Actions/Extension/Delete.php | 2 +- .../Upgrades/Actions/Extension/Install.php | 2 +- .../Upgrades/Actions/Extension/Uninstall.php | 2 +- .../Upgrades/Actions/Extension/Upload.php | 2 +- .../Espo/Core/Upgrades/Actions/Helper.php | 2 +- .../Core/Upgrades/Actions/Upgrade/Delete.php | 2 +- .../Core/Upgrades/Actions/Upgrade/Install.php | 2 +- .../Upgrades/Actions/Upgrade/Uninstall.php | 2 +- .../Core/Upgrades/Actions/Upgrade/Upload.php | 2 +- application/Espo/Core/Upgrades/Base.php | 2 +- application/Espo/Core/Utils/Api/Auth.php | 2 +- application/Espo/Core/Utils/Api/Output.php | 2 +- application/Espo/Core/Utils/Api/Slim.php | 2 +- application/Espo/Core/Utils/Auth.php | 2 +- .../Espo/Core/Utils/Authentication/Base.php | 2 +- .../Espo/Core/Utils/Authentication/Espo.php | 2 +- .../Espo/Core/Utils/Authentication/LDAP.php | 2 +- .../Core/Utils/Authentication/LDAP/Client.php | 2 +- .../Core/Utils/Authentication/LDAP/Utils.php | 2 +- application/Espo/Core/Utils/Autoload.php | 2 +- application/Espo/Core/Utils/ClientManager.php | 2 +- application/Espo/Core/Utils/Config.php | 2 +- application/Espo/Core/Utils/Cron/Job.php | 2 +- .../Espo/Core/Utils/Cron/ScheduledJob.php | 2 +- application/Espo/Core/Utils/Crypt.php | 2 +- application/Espo/Core/Utils/DataUtil.php | 2 +- .../Espo/Core/Utils/Database/Converter.php | 2 +- .../Database/DBAL/Driver/Mysqli/Driver.php | 2 +- .../Database/DBAL/Driver/PDOMySql/Driver.php | 2 +- .../Database/DBAL/FieldTypes/BoolType.php | 2 +- .../Database/DBAL/FieldTypes/IntType.php | 2 +- .../DBAL/FieldTypes/JsonArrayType.php | 2 +- .../DBAL/FieldTypes/JsonObjectType.php | 2 +- .../Database/DBAL/FieldTypes/PasswordType.php | 2 +- .../Database/DBAL/FieldTypes/VarcharType.php | 2 +- .../Database/DBAL/Platforms/MySqlPlatform.php | 2 +- .../Utils/Database/DBAL/Schema/Column.php | 2 +- .../Utils/Database/DBAL/Schema/Comparator.php | 2 +- .../Utils/Database/DBAL/Schema/Schema.php | 2 +- .../Core/Utils/Database/DBAL/Schema/Table.php | 2 +- .../Espo/Core/Utils/Database/Orm/Base.php | 2 +- .../Core/Utils/Database/Orm/Converter.php | 2 +- .../Orm/Fields/AttachmentMultiple.php | 2 +- .../Core/Utils/Database/Orm/Fields/Base.php | 2 +- .../Utils/Database/Orm/Fields/Currency.php | 2 +- .../Core/Utils/Database/Orm/Fields/Email.php | 2 +- .../Core/Utils/Database/Orm/Fields/Link.php | 2 +- .../Database/Orm/Fields/LinkMultiple.php | 2 +- .../Utils/Database/Orm/Fields/LinkParent.php | 2 +- .../Utils/Database/Orm/Fields/PersonName.php | 2 +- .../Core/Utils/Database/Orm/Fields/Phone.php | 2 +- .../Utils/Database/Orm/RelationManager.php | 2 +- .../Database/Orm/Relations/Attachments.php | 2 +- .../Utils/Database/Orm/Relations/Base.php | 2 +- .../Database/Orm/Relations/BelongsTo.php | 2 +- .../Orm/Relations/BelongsToParent.php | 2 +- .../Orm/Relations/EmailEmailAddress.php | 2 +- .../Database/Orm/Relations/EntityTeam.php | 2 +- .../Database/Orm/Relations/EntityUser.php | 2 +- .../Database/Orm/Relations/HasChildren.php | 2 +- .../Utils/Database/Orm/Relations/HasMany.php | 2 +- .../Database/Orm/Relations/HasManyHasMany.php | 2 +- .../Utils/Database/Orm/Relations/HasOne.php | 2 +- .../Utils/Database/Orm/Relations/ManyMany.php | 2 +- .../Database/Schema/BaseRebuildActions.php | 2 +- .../Core/Utils/Database/Schema/Converter.php | 2 +- .../Core/Utils/Database/Schema/Schema.php | 2 +- .../Schema/rebuildActions/AddSystemUser.php | 2 +- .../Schema/rebuildActions/Currency.php | 2 +- .../Database/Schema/tables/autofollow.php | 2 +- .../Database/Schema/tables/importEntity.php | 2 +- .../Database/Schema/tables/preferences.php | 2 +- .../Utils/Database/Schema/tables/settings.php | 2 +- .../Database/Schema/tables/subscription.php | 2 +- application/Espo/Core/Utils/DateTime.php | 2 +- .../Espo/Core/Utils/EmailFilterManager.php | 2 +- application/Espo/Core/Utils/EntityManager.php | 2 +- .../Core/Utils/EntityManager/Hooks/Base.php | 29 ++++++++++++++++++- .../EntityManager/Hooks/BasePlusType.php | 29 ++++++++++++++++++- .../Utils/EntityManager/Hooks/CompanyType.php | 29 ++++++++++++++++++- .../Utils/EntityManager/Hooks/PersonType.php | 29 ++++++++++++++++++- application/Espo/Core/Utils/FieldManager.php | 2 +- .../Core/Utils/FieldManager/Hooks/Base.php | 29 ++++++++++++++++++- .../Utils/FieldManager/Hooks/NumberType.php | 29 ++++++++++++++++++- .../Espo/Core/Utils/File/ClassParser.php | 2 +- .../Espo/Core/Utils/File/FileUnifier.php | 2 +- application/Espo/Core/Utils/File/Manager.php | 2 +- .../Espo/Core/Utils/File/Permission.php | 2 +- application/Espo/Core/Utils/File/Unifier.php | 2 +- .../Espo/Core/Utils/File/ZipArchive.php | 2 +- application/Espo/Core/Utils/Json.php | 2 +- application/Espo/Core/Utils/Language.php | 2 +- application/Espo/Core/Utils/Layout.php | 2 +- application/Espo/Core/Utils/Log.php | 2 +- .../Monolog/Handler/RotatingFileHandler.php | 2 +- .../Log/Monolog/Handler/StreamHandler.php | 2 +- .../Espo/Core/Utils/Log/Monolog/Logger.php | 2 +- application/Espo/Core/Utils/Metadata.php | 2 +- .../Espo/Core/Utils/Metadata/Helper.php | 2 +- .../Espo/Core/Utils/Metadata/OrmMetadata.php | 2 +- application/Espo/Core/Utils/Module.php | 2 +- application/Espo/Core/Utils/NumberUtil.php | 2 +- application/Espo/Core/Utils/PasswordHash.php | 2 +- application/Espo/Core/Utils/Route.php | 2 +- application/Espo/Core/Utils/ScheduledJob.php | 2 +- application/Espo/Core/Utils/System.php | 2 +- .../Espo/Core/Utils/TemplateFileManager.php | 2 +- application/Espo/Core/Utils/ThemeManager.php | 2 +- application/Espo/Core/Utils/Util.php | 2 +- application/Espo/Core/defaults/config.php | 2 +- .../Espo/Core/defaults/systemConfig.php | 2 +- application/Espo/Entities/Attachment.php | 2 +- application/Espo/Entities/AuthToken.php | 2 +- application/Espo/Entities/Email.php | 2 +- application/Espo/Entities/EmailAccount.php | 2 +- application/Espo/Entities/EmailAddress.php | 2 +- application/Espo/Entities/EmailFilter.php | 2 +- application/Espo/Entities/EmailFolder.php | 2 +- application/Espo/Entities/EmailTemplate.php | 2 +- application/Espo/Entities/Extension.php | 2 +- application/Espo/Entities/ExternalAccount.php | 2 +- application/Espo/Entities/Import.php | 2 +- application/Espo/Entities/InboundEmail.php | 2 +- application/Espo/Entities/Integration.php | 2 +- application/Espo/Entities/Job.php | 2 +- application/Espo/Entities/NextNumber.php | 2 +- application/Espo/Entities/Note.php | 2 +- application/Espo/Entities/Notification.php | 2 +- .../Espo/Entities/PasswordChangeRequest.php | 2 +- application/Espo/Entities/PhoneNumber.php | 2 +- application/Espo/Entities/Portal.php | 2 +- application/Espo/Entities/PortalRole.php | 2 +- application/Espo/Entities/Preferences.php | 2 +- application/Espo/Entities/Role.php | 2 +- application/Espo/Entities/ScheduledJob.php | 2 +- .../Espo/Entities/ScheduledJobLogRecord.php | 2 +- application/Espo/Entities/Team.php | 2 +- application/Espo/Entities/Template.php | 2 +- application/Espo/Entities/UniqueId.php | 2 +- application/Espo/Entities/User.php | 2 +- application/Espo/EntryPoints/Attachment.php | 2 +- application/Espo/EntryPoints/Avatar.php | 2 +- .../Espo/EntryPoints/ChangePassword.php | 2 +- application/Espo/EntryPoints/Download.php | 2 +- application/Espo/EntryPoints/Image.php | 2 +- application/Espo/EntryPoints/LogoImage.php | 2 +- .../Espo/EntryPoints/OauthCallback.php | 2 +- application/Espo/EntryPoints/Pdf.php | 2 +- application/Espo/EntryPoints/Portal.php | 2 +- .../Common/AssignmentEmailNotification.php | 2 +- .../Espo/Hooks/Common/CurrencyConverted.php | 2 +- application/Espo/Hooks/Common/Formula.php | 2 +- application/Espo/Hooks/Common/NextNumber.php | 2 +- .../Espo/Hooks/Common/Notifications.php | 2 +- application/Espo/Hooks/Common/Stream.php | 2 +- .../Espo/Hooks/Integration/GoogleMaps.php | 2 +- application/Espo/Hooks/Note/Mentions.php | 2 +- application/Espo/Hooks/Note/Notifications.php | 2 +- application/Espo/Jobs/AuthTokenControl.php | 2 +- application/Espo/Jobs/Cleanup.php | 2 +- .../Espo/Jobs/SendEmailNotifications.php | 2 +- application/Espo/Modules/Crm/Acl/Call.php | 2 +- .../Modules/Crm/Acl/CampaignLogRecord.php | 2 +- .../Modules/Crm/Acl/CampaignTrackingUrl.php | 2 +- .../Espo/Modules/Crm/Acl/MassEmail.php | 2 +- application/Espo/Modules/Crm/Acl/Meeting.php | 2 +- .../Espo/Modules/Crm/AclPortal/Account.php | 2 +- .../Espo/Modules/Crm/AclPortal/Contact.php | 2 +- .../Distribution/CaseObj/LeastBusy.php | 2 +- .../Distribution/CaseObj/RoundRobin.php | 2 +- .../Business/Distribution/Lead/LeastBusy.php | 2 +- .../Business/Distribution/Lead/RoundRobin.php | 2 +- .../Espo/Modules/Crm/Business/Event/Ics.php | 2 +- .../Crm/Business/Event/Invitations.php | 2 +- .../Crm/Business/Reminder/EmailReminder.php | 2 +- .../Espo/Modules/Crm/Controllers/Account.php | 2 +- .../Modules/Crm/Controllers/Activities.php | 2 +- .../Espo/Modules/Crm/Controllers/Call.php | 2 +- .../Espo/Modules/Crm/Controllers/Campaign.php | 2 +- .../Crm/Controllers/CampaignLogRecord.php | 2 +- .../Crm/Controllers/CampaignTrackingUrl.php | 2 +- .../Espo/Modules/Crm/Controllers/CaseObj.php | 2 +- .../Espo/Modules/Crm/Controllers/Contact.php | 2 +- .../Espo/Modules/Crm/Controllers/Document.php | 2 +- .../Crm/Controllers/DocumentFolder.php | 2 +- .../Crm/Controllers/EmailQueueItem.php | 2 +- .../Crm/Controllers/KnowledgeBaseArticle.php | 2 +- .../Crm/Controllers/KnowledgeBaseCategory.php | 2 +- .../Espo/Modules/Crm/Controllers/Lead.php | 2 +- .../Modules/Crm/Controllers/MassEmail.php | 2 +- .../Espo/Modules/Crm/Controllers/Meeting.php | 2 +- .../Modules/Crm/Controllers/Opportunity.php | 2 +- .../Espo/Modules/Crm/Controllers/Target.php | 2 +- .../Modules/Crm/Controllers/TargetList.php | 2 +- .../Espo/Modules/Crm/Controllers/Task.php | 2 +- .../Espo/Modules/Crm/Entities/Account.php | 2 +- .../Espo/Modules/Crm/Entities/Call.php | 2 +- .../Espo/Modules/Crm/Entities/Campaign.php | 2 +- .../Crm/Entities/CampaignLogRecord.php | 2 +- .../Crm/Entities/CampaignTrackingUrl.php | 2 +- .../Espo/Modules/Crm/Entities/CaseObj.php | 2 +- .../Espo/Modules/Crm/Entities/Contact.php | 2 +- .../Espo/Modules/Crm/Entities/Document.php | 2 +- .../Modules/Crm/Entities/DocumentFolder.php | 2 +- .../Modules/Crm/Entities/EmailQueueItem.php | 2 +- .../Crm/Entities/KnowledgeBaseArticle.php | 2 +- .../Crm/Entities/KnowledgeBaseCategory.php | 2 +- .../Espo/Modules/Crm/Entities/Lead.php | 2 +- .../Espo/Modules/Crm/Entities/MassEmail.php | 2 +- .../Espo/Modules/Crm/Entities/Meeting.php | 2 +- .../Espo/Modules/Crm/Entities/Opportunity.php | 2 +- .../Espo/Modules/Crm/Entities/Reminder.php | 2 +- .../Espo/Modules/Crm/Entities/Target.php | 2 +- .../Espo/Modules/Crm/Entities/TargetList.php | 2 +- .../Espo/Modules/Crm/Entities/Task.php | 2 +- .../Crm/EntryPoints/CampaignTrackOpened.php | 2 +- .../Modules/Crm/EntryPoints/CampaignUrl.php | 2 +- .../Crm/EntryPoints/EventConfirmation.php | 2 +- .../Crm/EntryPoints/SubscribeAgain.php | 2 +- .../Modules/Crm/EntryPoints/Unsubscribe.php | 2 +- .../Modules/Crm/Jobs/CheckEmailAccounts.php | 2 +- .../Modules/Crm/Jobs/CheckInboundEmails.php | 2 +- .../Modules/Crm/Jobs/ProcessMassEmail.php | 2 +- .../Modules/Crm/Jobs/SendEmailReminders.php | 2 +- .../Espo/Modules/Crm/Repositories/Account.php | 2 +- .../Espo/Modules/Crm/Repositories/Call.php | 2 +- .../Espo/Modules/Crm/Repositories/CaseObj.php | 2 +- .../Espo/Modules/Crm/Repositories/Contact.php | 2 +- .../Crm/Repositories/DocumentFolder.php | 2 +- .../Crm/Repositories/KnowledgeBaseArticle.php | 2 +- .../Repositories/KnowledgeBaseCategory.php | 2 +- .../Espo/Modules/Crm/Repositories/Lead.php | 2 +- .../Espo/Modules/Crm/Repositories/Meeting.php | 2 +- .../Modules/Crm/Repositories/Opportunity.php | 2 +- .../Modules/Crm/Repositories/TargetList.php | 2 +- .../Espo/Modules/Crm/Repositories/Task.php | 2 +- .../Modules/Crm/SelectManagers/Account.php | 2 +- .../Espo/Modules/Crm/SelectManagers/Call.php | 2 +- .../Modules/Crm/SelectManagers/Campaign.php | 2 +- .../Crm/SelectManagers/CampaignLogRecord.php | 2 +- .../SelectManagers/CampaignTrackingUrl.php | 2 +- .../Modules/Crm/SelectManagers/CaseObj.php | 2 +- .../Modules/Crm/SelectManagers/Contact.php | 2 +- .../Modules/Crm/SelectManagers/Document.php | 2 +- .../Crm/SelectManagers/EmailQueueItem.php | 2 +- .../SelectManagers/KnowledgeBaseArticle.php | 2 +- .../Espo/Modules/Crm/SelectManagers/Lead.php | 2 +- .../Modules/Crm/SelectManagers/MassEmail.php | 2 +- .../Modules/Crm/SelectManagers/Meeting.php | 2 +- .../Crm/SelectManagers/Opportunity.php | 2 +- .../Espo/Modules/Crm/SelectManagers/Task.php | 2 +- .../Espo/Modules/Crm/Services/Account.php | 2 +- .../Espo/Modules/Crm/Services/Activities.php | 2 +- .../Espo/Modules/Crm/Services/Call.php | 2 +- .../Espo/Modules/Crm/Services/Campaign.php | 2 +- .../Crm/Services/CampaignTrackingUrl.php | 2 +- .../Espo/Modules/Crm/Services/CaseObj.php | 2 +- .../Espo/Modules/Crm/Services/Contact.php | 2 +- .../Espo/Modules/Crm/Services/Document.php | 2 +- .../Modules/Crm/Services/DocumentFolder.php | 2 +- .../Crm/Services/KnowledgeBaseArticle.php | 2 +- .../Crm/Services/KnowledgeBaseCategory.php | 2 +- .../Espo/Modules/Crm/Services/Lead.php | 2 +- .../Espo/Modules/Crm/Services/MassEmail.php | 2 +- .../Espo/Modules/Crm/Services/Meeting.php | 2 +- .../Espo/Modules/Crm/Services/Opportunity.php | 2 +- .../Espo/Modules/Crm/Services/Target.php | 2 +- .../Espo/Modules/Crm/Services/TargetList.php | 2 +- .../Espo/Modules/Crm/Services/Task.php | 2 +- application/Espo/Notificators/Email.php | 2 +- application/Espo/ORM/DB/IMapper.php | 2 +- application/Espo/ORM/DB/Mapper.php | 2 +- application/Espo/ORM/DB/MysqlMapper.php | 2 +- application/Espo/ORM/DB/Query/Base.php | 2 +- application/Espo/ORM/DB/Query/Mysql.php | 2 +- application/Espo/ORM/Entity.php | 2 +- application/Espo/ORM/EntityCollection.php | 2 +- application/Espo/ORM/EntityFactory.php | 2 +- application/Espo/ORM/EntityManager.php | 2 +- application/Espo/ORM/IEntity.php | 2 +- application/Espo/ORM/Metadata.php | 2 +- application/Espo/ORM/Repositories/RDB.php | 2 +- application/Espo/ORM/Repository.php | 2 +- application/Espo/ORM/RepositoryFactory.php | 2 +- application/Espo/Repositories/Attachment.php | 2 +- application/Espo/Repositories/Email.php | 2 +- .../Espo/Repositories/EmailAddress.php | 2 +- application/Espo/Repositories/EmailFolder.php | 2 +- .../Espo/Repositories/ExternalAccount.php | 2 +- application/Espo/Repositories/Import.php | 2 +- application/Espo/Repositories/Integration.php | 2 +- application/Espo/Repositories/Job.php | 2 +- application/Espo/Repositories/PhoneNumber.php | 2 +- application/Espo/Repositories/Portal.php | 2 +- application/Espo/Repositories/Preferences.php | 2 +- application/Espo/Repositories/UniqueId.php | 2 +- application/Espo/Repositories/User.php | 2 +- application/Espo/SelectManagers/Email.php | 2 +- .../Espo/SelectManagers/EmailAccount.php | 2 +- .../Espo/SelectManagers/EmailFilter.php | 2 +- .../Espo/SelectManagers/EmailFolder.php | 2 +- .../Espo/SelectManagers/EmailTemplate.php | 2 +- application/Espo/SelectManagers/Team.php | 2 +- application/Espo/SelectManagers/User.php | 2 +- application/Espo/Services/Attachment.php | 2 +- application/Espo/Services/AuthToken.php | 2 +- application/Espo/Services/Email.php | 2 +- application/Espo/Services/EmailAccount.php | 2 +- application/Espo/Services/EmailAddress.php | 2 +- application/Espo/Services/EmailFilter.php | 2 +- application/Espo/Services/EmailFolder.php | 2 +- .../Espo/Services/EmailNotification.php | 2 +- application/Espo/Services/EmailTemplate.php | 2 +- application/Espo/Services/ExternalAccount.php | 2 +- application/Espo/Services/GlobalSearch.php | 2 +- application/Espo/Services/Import.php | 2 +- application/Espo/Services/InboundEmail.php | 2 +- application/Espo/Services/Note.php | 2 +- application/Espo/Services/Notification.php | 2 +- application/Espo/Services/Pdf.php | 2 +- application/Espo/Services/Portal.php | 2 +- application/Espo/Services/PortalRole.php | 2 +- application/Espo/Services/Record.php | 2 +- application/Espo/Services/RecordTree.php | 2 +- application/Espo/Services/Role.php | 2 +- application/Espo/Services/Stream.php | 2 +- application/Espo/Services/Team.php | 2 +- application/Espo/Services/User.php | 2 +- bootstrap.php | 2 +- clear_cache.php | 2 +- client/modules/crm/src/acl-portal/account.js | 2 +- client/modules/crm/src/acl-portal/contact.js | 2 +- client/modules/crm/src/acl/call.js | 2 +- .../crm/src/acl/campaign-tracking-url.js | 2 +- client/modules/crm/src/acl/mass-email.js | 2 +- client/modules/crm/src/acl/meeting.js | 2 +- .../modules/crm/src/controllers/calendar.js | 2 +- client/modules/crm/src/controllers/lead.js | 2 +- .../modules/crm/src/knowledge-base-helper.js | 2 +- .../modules/crm/src/views/account/detail.js | 2 +- .../views/account/fields/shipping-address.js | 2 +- .../crm/src/views/calendar/calendar-page.js | 2 +- .../crm/src/views/calendar/calendar.js | 2 +- .../crm/src/views/calendar/fields/users.js | 2 +- .../crm/src/views/calendar/modals/edit.js | 2 +- .../views/calendar/modals/shared-options.js | 2 +- .../views/calendar/record/shared-options.js | 2 +- .../crm/src/views/calendar/timeline.js | 2 +- client/modules/crm/src/views/call/detail.js | 2 +- .../crm/src/views/call/record/detail.js | 2 +- .../src/views/call/record/list-expanded.js | 2 +- .../modules/crm/src/views/call/record/list.js | 2 +- .../views/call/record/row-actions/dashlet.js | 2 +- .../views/call/record/row-actions/default.js | 2 +- .../views/campaign-log-record/fields/data.js | 2 +- .../record/edit-small.js | 2 +- .../campaign-tracking-url/record/edit.js | 2 +- .../modules/crm/src/views/campaign/detail.js | 2 +- .../campaign/fields/int-with-percentage.js | 2 +- .../views/campaign/record/detail-bottom.js | 2 +- .../crm/src/views/campaign/record/detail.js | 2 +- .../record/panels/campaign-log-records.js | 2 +- .../campaign/record/panels/statistics.js | 2 +- .../crm/src/views/case/fields/contact.js | 2 +- .../crm/src/views/case/fields/contacts.js | 2 +- .../crm/src/views/case/record/detail.js | 2 +- .../views/case/record/panels/activities.js | 2 +- .../modules/crm/src/views/contact/detail.js | 2 +- .../crm/src/views/contact/fields/accounts.js | 2 +- .../contact/modals/select-for-portal-user.js | 2 +- .../src/views/contact/record/detail-small.js | 2 +- .../crm/src/views/contact/record/detail.js | 2 +- .../crm/src/views/dashlets/abstract/chart.js | 2 +- .../crm/src/views/dashlets/activities.js | 2 +- .../crm/src/views/dashlets/calendar.js | 2 +- .../modules/crm/src/views/dashlets/calls.js | 2 +- .../crm/src/views/dashlets/meetings.js | 2 +- .../dashlets/opportunities-by-lead-source.js | 2 +- .../views/dashlets/opportunities-by-stage.js | 2 +- .../src/views/dashlets/options/activities.js | 2 +- .../src/views/dashlets/options/calendar.js | 2 +- .../crm/src/views/dashlets/sales-by-month.js | 2 +- .../crm/src/views/dashlets/sales-pipeline.js | 2 +- .../modules/crm/src/views/dashlets/tasks.js | 2 +- .../crm/src/views/document/fields/file.js | 2 +- .../crm/src/views/document/fields/name.js | 2 +- client/modules/crm/src/views/document/list.js | 2 +- .../views/document/modals/select-records.js | 2 +- .../crm/src/views/email-queue-item/list.js | 2 +- .../src/views/email-queue-item/record/list.js | 2 +- client/modules/crm/src/views/fields/ico.js | 2 +- .../knowledge-base-article/fields/language.js | 2 +- .../knowledge-base-article/fields/status.js | 2 +- .../src/views/knowledge-base-article/list.js | 2 +- .../modals/select-records.js | 2 +- .../record/detail-quick.js | 2 +- .../knowledge-base-article/record/detail.js | 2 +- .../record/edit-quick.js | 2 +- .../record/list-for-case.js | 2 +- .../knowledge-base-article/record/list.js | 2 +- .../record/row-actions/default.js | 2 +- .../record/row-actions/for-case.js | 2 +- client/modules/crm/src/views/lead/convert.js | 2 +- client/modules/crm/src/views/lead/detail.js | 2 +- .../src/views/lead/fields/created-contact.js | 2 +- .../views/lead/fields/created-opportunity.js | 2 +- .../crm/src/views/lead/fields/industry.js | 2 +- .../crm/src/views/lead/record/detail-side.js | 2 +- .../crm/src/views/lead/record/detail.js | 2 +- .../views/lead/record/panels/converted-to.js | 2 +- .../crm/src/views/mass-email/detail.js | 2 +- .../views/mass-email/fields/email-template.js | 2 +- .../views/mass-email/fields/from-address.js | 2 +- .../src/views/mass-email/modals/send-test.js | 2 +- .../views/mass-email/record/detail-bottom.js | 2 +- .../crm/src/views/mass-email/record/detail.js | 2 +- .../src/views/mass-email/record/edit-small.js | 2 +- .../crm/src/views/mass-email/record/edit.js | 2 +- .../mass-email/record/list-for-campaign.js | 2 +- .../record/row-actions/for-campaign.js | 2 +- .../modules/crm/src/views/meeting/detail.js | 2 +- .../crm/src/views/meeting/fields/attendees.js | 2 +- .../crm/src/views/meeting/fields/contacts.js | 2 +- .../crm/src/views/meeting/fields/reminders.js | 2 +- .../crm/src/views/meeting/fields/users.js | 2 +- .../src/views/meeting/popup-notification.js | 2 +- .../crm/src/views/meeting/record/detail.js | 2 +- .../src/views/meeting/record/list-expanded.js | 2 +- .../crm/src/views/meeting/record/list.js | 2 +- .../views/meeting/record/panels/attendees.js | 2 +- .../meeting/record/row-actions/dashlet.js | 2 +- .../meeting/record/row-actions/default.js | 2 +- .../field-manager/fields/probability-map.js | 2 +- .../crm/src/views/opportunity/detail.js | 2 +- .../src/views/opportunity/fields/contacts.js | 2 +- .../views/opportunity/fields/lead-source.js | 2 +- .../crm/src/views/opportunity/fields/stage.js | 2 +- .../views/opportunity/record/edit-small.js | 2 +- .../crm/src/views/opportunity/record/edit.js | 2 +- .../crm/src/views/record/panels/activities.js | 2 +- .../crm/src/views/record/panels/history.js | 2 +- .../crm/src/views/record/panels/tasks.js | 2 +- .../views/record/row-actions/activities.js | 2 +- .../src/views/record/row-actions/history.js | 2 +- .../crm/src/views/record/row-actions/tasks.js | 2 +- .../fields/including-action-list.js | 2 +- .../target-list/record/panels/opted-out.js | 2 +- .../target-list/record/panels/relationship.js | 2 +- .../target-list/record/row-actions/default.js | 2 +- .../record/row-actions/opted-out.js | 2 +- client/modules/crm/src/views/target/detail.js | 2 +- client/modules/crm/src/views/task/detail.js | 2 +- .../crm/src/views/task/fields/date-end.js | 2 +- .../crm/src/views/task/fields/is-overdue.js | 2 +- client/modules/crm/src/views/task/list.js | 2 +- .../crm/src/views/task/record/detail.js | 2 +- .../src/views/task/record/list-expanded.js | 2 +- .../modules/crm/src/views/task/record/list.js | 2 +- .../views/task/record/row-actions/dashlet.js | 2 +- .../views/task/record/row-actions/default.js | 2 +- client/res/templates/about.tpl | 2 +- client/res/templates/site/footer.tpl | 2 +- client/src/acl-manager.js | 2 +- client/src/acl-portal-manager.js | 2 +- client/src/acl-portal.js | 2 +- client/src/acl-portal/email.js | 2 +- client/src/acl-portal/preferences.js | 2 +- client/src/acl.js | 2 +- client/src/acl/email.js | 2 +- client/src/acl/preferences.js | 2 +- client/src/ajax.js | 2 +- client/src/app-portal.js | 2 +- client/src/app.js | 2 +- client/src/cache.js | 2 +- client/src/collection-factory.js | 2 +- client/src/collection.js | 2 +- client/src/collections/note.js | 2 +- client/src/collections/tree.js | 2 +- client/src/controller.js | 2 +- client/src/controllers/about.js | 2 +- client/src/controllers/admin.js | 2 +- client/src/controllers/base.js | 2 +- client/src/controllers/dashboard.js | 2 +- client/src/controllers/email-account.js | 2 +- client/src/controllers/external-account.js | 2 +- client/src/controllers/home.js | 2 +- client/src/controllers/import.js | 2 +- client/src/controllers/inbound-email.js | 2 +- client/src/controllers/notification.js | 2 +- client/src/controllers/page.js | 2 +- .../controllers/password-change-request.js | 2 +- client/src/controllers/portal-role.js | 2 +- client/src/controllers/portal-user.js | 2 +- client/src/controllers/preferences.js | 2 +- client/src/controllers/record-tree.js | 2 +- client/src/controllers/record.js | 2 +- client/src/controllers/role.js | 2 +- client/src/controllers/stream.js | 2 +- client/src/controllers/team.js | 2 +- client/src/controllers/user.js | 2 +- client/src/date-time.js | 2 +- client/src/dynamic-logic.js | 2 +- client/src/email-helper.js | 2 +- client/src/exceptions.js | 2 +- client/src/field-manager.js | 2 +- client/src/language.js | 2 +- client/src/layout-manager.js | 2 +- client/src/loader.js | 2 +- client/src/metadata.js | 2 +- client/src/model-factory.js | 2 +- client/src/model-offline.js | 2 +- client/src/model.js | 2 +- client/src/models/email.js | 2 +- client/src/models/preferences.js | 2 +- client/src/models/settings.js | 2 +- client/src/models/user.js | 2 +- client/src/multi-collection.js | 2 +- client/src/namespace.js | 2 +- client/src/pre-loader.js | 2 +- client/src/router.js | 2 +- client/src/search-manager.js | 2 +- client/src/storage.js | 2 +- client/src/theme-manager.js | 2 +- client/src/ui.js | 2 +- client/src/utils.js | 2 +- client/src/view-helper.js | 2 +- client/src/view-record-helper.js | 2 +- client/src/view.js | 2 +- client/src/views/about.js | 2 +- client/src/views/admin/auth-token/list.js | 2 +- .../src/views/admin/auth-token/record/list.js | 2 +- client/src/views/admin/authentication.js | 2 +- .../authentication/fields/test-connection.js | 2 +- client/src/views/admin/currency.js | 2 +- .../conditions-string/group-base.js | 2 +- .../conditions-string/group-not.js | 2 +- .../conditions-string/item-base.js | 2 +- .../conditions-string/item-in-future.js | 2 +- .../conditions-string/item-in-past.js | 2 +- .../conditions-string/item-is-today.js | 2 +- .../item-multiple-values-base.js | 2 +- .../item-operator-only-base.js | 2 +- .../item-operator-only-date.js | 2 +- .../conditions-string/item-value-link.js | 2 +- .../admin/dynamic-logic/conditions/and.js | 2 +- .../conditions/field-types/base.js | 2 +- .../conditions/field-types/date.js | 2 +- .../conditions/field-types/enum.js | 2 +- .../conditions/field-types/link-multiple.js | 2 +- .../conditions/field-types/link-parent.js | 2 +- .../conditions/field-types/link.js | 2 +- .../dynamic-logic/conditions/group-base.js | 2 +- .../admin/dynamic-logic/conditions/not.js | 2 +- .../admin/dynamic-logic/conditions/or.js | 2 +- .../views/admin/dynamic-logic/fields/field.js | 2 +- .../admin/dynamic-logic/modals/add-field.js | 2 +- .../views/admin/dynamic-logic/modals/edit.js | 2 +- .../src/views/admin/entity-manager/index.js | 2 +- .../entity-manager/modals/edit-entity.js | 2 +- .../entity-manager/modals/edit-formula.js | 2 +- .../entity-manager/record/edit-formula.js | 2 +- client/src/views/admin/extensions/done.js | 2 +- client/src/views/admin/extensions/index.js | 2 +- client/src/views/admin/extensions/ready.js | 2 +- client/src/views/admin/field-manager/edit.js | 2 +- .../field-manager/fields/date/default.js | 2 +- .../fields/dynamic-logic-conditions.js | 2 +- .../fields/dynamic-logic-options.js | 2 +- .../admin/field-manager/fields/entity-list.js | 2 +- .../field-manager/fields/foreign/field.js | 2 +- .../field-manager/fields/foreign/link.js | 2 +- .../admin/field-manager/fields/options.js | 2 +- .../field-manager/fields/options/default.js | 2 +- .../admin/field-manager/fields/source-list.js | 2 +- client/src/views/admin/field-manager/index.js | 2 +- client/src/views/admin/field-manager/list.js | 2 +- .../views/admin/formula/fields/attribute.js | 2 +- .../admin/formula/modals/add-attribute.js | 2 +- .../admin/formula/modals/add-function.js | 2 +- client/src/views/admin/inbound-emails.js | 2 +- client/src/views/admin/index.js | 2 +- client/src/views/admin/integrations/edit.js | 2 +- .../views/admin/integrations/google-maps.js | 28 +++++++++++++++++- client/src/views/admin/integrations/index.js | 2 +- client/src/views/admin/integrations/oauth2.js | 2 +- client/src/views/admin/job/fields/name.js | 2 +- client/src/views/admin/job/list.js | 2 +- client/src/views/admin/job/modals/detail.js | 2 +- .../views/admin/job/record/detail-small.js | 2 +- client/src/views/admin/job/record/list.js | 2 +- client/src/views/admin/layouts/base.js | 2 +- .../src/views/admin/layouts/detail-convert.js | 2 +- .../src/views/admin/layouts/detail-small.js | 2 +- client/src/views/admin/layouts/detail.js | 2 +- client/src/views/admin/layouts/filters.js | 2 +- client/src/views/admin/layouts/grid.js | 2 +- client/src/views/admin/layouts/index.js | 2 +- client/src/views/admin/layouts/list-small.js | 2 +- client/src/views/admin/layouts/list.js | 2 +- client/src/views/admin/layouts/mass-update.js | 2 +- .../admin/layouts/modals/edit-attributes.js | 2 +- .../admin/layouts/modals/panel-attributes.js | 2 +- .../admin/layouts/record/edit-attributes.js | 2 +- .../src/views/admin/layouts/relationships.js | 2 +- client/src/views/admin/layouts/rows.js | 2 +- .../admin/layouts/side-panels-detail-small.js | 2 +- .../views/admin/layouts/side-panels-detail.js | 2 +- .../admin/layouts/side-panels-edit-small.js | 2 +- .../views/admin/layouts/side-panels-edit.js | 2 +- client/src/views/admin/link-manager/index.js | 2 +- .../views/admin/link-manager/modals/edit.js | 2 +- client/src/views/admin/notifications.js | 2 +- client/src/views/admin/outbound-emails.js | 2 +- client/src/views/admin/settings.js | 2 +- client/src/views/admin/upgrade/done.js | 2 +- client/src/views/admin/upgrade/index.js | 2 +- client/src/views/admin/upgrade/ready.js | 2 +- client/src/views/admin/user-interface.js | 2 +- client/src/views/base.js | 2 +- client/src/views/dashboard.js | 2 +- client/src/views/dashlet.js | 2 +- client/src/views/dashlets/abstract/base.js | 2 +- .../views/dashlets/abstract/record-list.js | 2 +- client/src/views/dashlets/emails.js | 2 +- client/src/views/dashlets/options/base.js | 2 +- client/src/views/dashlets/stream.js | 2 +- client/src/views/detail.js | 2 +- client/src/views/edit.js | 2 +- .../email-account/fields/email-address.js | 2 +- .../email-account/fields/email-folder.js | 2 +- .../src/views/email-account/fields/folder.js | 2 +- .../src/views/email-account/fields/folders.js | 2 +- .../email-account/fields/test-connection.js | 2 +- .../views/email-account/fields/test-send.js | 2 +- client/src/views/email-account/list.js | 2 +- .../email-account/modals/select-folder.js | 2 +- .../src/views/email-account/record/detail.js | 2 +- client/src/views/email-account/record/edit.js | 2 +- client/src/views/email-account/record/list.js | 2 +- .../src/views/email-filter/fields/action.js | 2 +- .../views/email-filter/fields/email-folder.js | 2 +- client/src/views/email-filter/modals/edit.js | 2 +- .../views/email-filter/record/detail-small.js | 2 +- .../src/views/email-filter/record/detail.js | 2 +- .../views/email-filter/record/edit-small.js | 2 +- client/src/views/email-filter/record/edit.js | 2 +- client/src/views/email-folder/list-side.js | 2 +- client/src/views/email-folder/list.js | 2 +- .../email-folder/modals/select-folder.js | 2 +- client/src/views/email-folder/record/list.js | 2 +- .../record/row-actions/default.js | 2 +- .../email-template/fields/insert-field.js | 2 +- .../src/views/email-template/record/detail.js | 2 +- .../views/email-template/record/edit-quick.js | 2 +- .../src/views/email-template/record/edit.js | 2 +- .../record/panels/information.js | 2 +- client/src/views/email/detail.js | 2 +- .../email/fields/compose-from-address.js | 2 +- .../email/fields/email-address-varchar.js | 2 +- .../src/views/email/fields/email-address.js | 2 +- .../email/fields/from-address-varchar.js | 2 +- .../views/email/fields/from-email-address.js | 2 +- client/src/views/email/fields/icon.js | 2 +- .../src/views/email/fields/select-template.js | 2 +- client/src/views/email/fields/subject.js | 2 +- client/src/views/email/list.js | 2 +- client/src/views/email/modals/body-plain.js | 2 +- client/src/views/email/modals/detail.js | 2 +- client/src/views/email/record/compose.js | 2 +- client/src/views/email/record/detail-quick.js | 2 +- client/src/views/email/record/detail-side.js | 2 +- client/src/views/email/record/detail.js | 2 +- client/src/views/email/record/edit-quick.js | 2 +- client/src/views/email/record/edit.js | 2 +- .../src/views/email/record/list-expanded.js | 2 +- client/src/views/email/record/list.js | 2 +- .../views/email/record/row-actions/dashlet.js | 2 +- .../views/email/record/row-actions/default.js | 2 +- client/src/views/export/modals/export.js | 2 +- client/src/views/export/record/record.js | 2 +- client/src/views/extension/record/list.js | 2 +- .../src/views/extension/record/row-actions.js | 2 +- client/src/views/external-account/index.js | 2 +- client/src/views/external-account/oauth2.js | 2 +- client/src/views/fields/address.js | 2 +- client/src/views/fields/array-int.js | 2 +- client/src/views/fields/array.js | 2 +- client/src/views/fields/assigned-user.js | 2 +- client/src/views/fields/assigned-users.js | 2 +- .../src/views/fields/attachment-multiple.js | 2 +- client/src/views/fields/autoincrement.js | 2 +- client/src/views/fields/base.js | 2 +- client/src/views/fields/bool.js | 2 +- client/src/views/fields/currency-converted.js | 2 +- client/src/views/fields/currency.js | 2 +- client/src/views/fields/date.js | 2 +- client/src/views/fields/datetime-optional.js | 2 +- client/src/views/fields/datetime-short.js | 2 +- client/src/views/fields/datetime.js | 2 +- client/src/views/fields/duration.js | 2 +- client/src/views/fields/email.js | 2 +- client/src/views/fields/entity-type-list.js | 2 +- client/src/views/fields/entity-type.js | 2 +- client/src/views/fields/enum-float.js | 2 +- client/src/views/fields/enum-int.js | 2 +- client/src/views/fields/enum-styled.js | 2 +- client/src/views/fields/enum.js | 2 +- client/src/views/fields/file.js | 2 +- client/src/views/fields/float.js | 2 +- client/src/views/fields/followers.js | 2 +- client/src/views/fields/foreign-enum.js | 2 +- client/src/views/fields/foreign-float.js | 2 +- client/src/views/fields/foreign-int.js | 2 +- client/src/views/fields/foreign-varchar.js | 2 +- client/src/views/fields/foreign.js | 2 +- client/src/views/fields/formula.js | 2 +- client/src/views/fields/image.js | 2 +- client/src/views/fields/int.js | 2 +- client/src/views/fields/json-object.js | 2 +- client/src/views/fields/link-category-tree.js | 2 +- .../fields/link-multiple-category-tree.js | 2 +- .../fields/link-multiple-with-primary.js | 2 +- .../views/fields/link-multiple-with-role.js | 2 +- client/src/views/fields/link-multiple.js | 2 +- client/src/views/fields/link-one.js | 2 +- client/src/views/fields/link-parent.js | 2 +- client/src/views/fields/link.js | 2 +- client/src/views/fields/map.js | 2 +- client/src/views/fields/multi-enum.js | 2 +- client/src/views/fields/number.js | 2 +- client/src/views/fields/password.js | 2 +- client/src/views/fields/person-name.js | 2 +- client/src/views/fields/phone.js | 2 +- client/src/views/fields/range-currency.js | 2 +- client/src/views/fields/range-float.js | 2 +- client/src/views/fields/range-int.js | 2 +- client/src/views/fields/teams.js | 2 +- client/src/views/fields/text.js | 2 +- client/src/views/fields/url.js | 2 +- client/src/views/fields/user-with-avatar.js | 2 +- client/src/views/fields/user.js | 2 +- client/src/views/fields/users.js | 2 +- client/src/views/fields/varchar.js | 2 +- client/src/views/fields/wysiwyg.js | 2 +- .../src/views/global-search/global-search.js | 2 +- client/src/views/global-search/name-field.js | 2 +- client/src/views/global-search/panel.js | 2 +- client/src/views/global-search/scope-badge.js | 2 +- client/src/views/header.js | 2 +- client/src/views/home.js | 2 +- client/src/views/import/detail.js | 2 +- client/src/views/import/index.js | 2 +- client/src/views/import/list.js | 2 +- client/src/views/import/record/detail.js | 2 +- client/src/views/import/record/list.js | 2 +- .../views/import/record/panels/duplicates.js | 2 +- .../views/import/record/panels/imported.js | 2 +- .../src/views/import/record/panels/updated.js | 2 +- .../import/record/row-actions/duplicates.js | 2 +- client/src/views/import/step1.js | 2 +- client/src/views/import/step2.js | 2 +- .../inbound-email/fields/email-address.js | 2 +- .../src/views/inbound-email/fields/folder.js | 2 +- .../src/views/inbound-email/fields/folders.js | 2 +- .../fields/target-user-position.js | 2 +- .../inbound-email/fields/test-connection.js | 2 +- .../inbound-email/modals/select-folder.js | 2 +- .../src/views/inbound-email/record/detail.js | 2 +- client/src/views/inbound-email/record/edit.js | 2 +- client/src/views/inbound-email/record/list.js | 2 +- client/src/views/list-tree.js | 2 +- client/src/views/list.js | 2 +- client/src/views/login.js | 2 +- client/src/views/main.js | 2 +- client/src/views/merge.js | 2 +- client/src/views/modal.js | 2 +- client/src/views/modals/add-dashlet.js | 2 +- client/src/views/modals/array-field-add.js | 2 +- client/src/views/modals/change-password.js | 2 +- client/src/views/modals/compose-email.js | 2 +- client/src/views/modals/detail.js | 2 +- client/src/views/modals/duplicate.js | 2 +- client/src/views/modals/edit-dashboard.js | 2 +- client/src/views/modals/edit.js | 2 +- client/src/views/modals/image-crop.js | 2 +- client/src/views/modals/image-preview.js | 2 +- client/src/views/modals/mass-update.js | 2 +- .../views/modals/password-change-request.js | 2 +- client/src/views/modals/save-filters.js | 2 +- .../modals/select-category-tree-records.js | 2 +- client/src/views/modals/select-records.js | 2 +- client/src/views/modals/select-template.js | 2 +- client/src/views/note/fields/post.js | 2 +- client/src/views/note/modals/edit.js | 2 +- client/src/views/note/record/edit.js | 2 +- client/src/views/notification/badge.js | 2 +- .../views/notification/fields/container.js | 2 +- .../notification/fields/read-with-menu.js | 2 +- client/src/views/notification/fields/read.js | 2 +- client/src/views/notification/items/assign.js | 2 +- client/src/views/notification/items/base.js | 2 +- .../notification/items/email-received.js | 2 +- .../notification/items/entity-removed.js | 2 +- .../src/views/notification/items/message.js | 2 +- client/src/views/notification/items/system.js | 2 +- client/src/views/notification/list.js | 2 +- client/src/views/notification/panel.js | 2 +- client/src/views/notification/record/list.js | 2 +- .../views/outbound-email/fields/test-send.js | 2 +- .../views/outbound-email/modals/test-send.js | 2 +- client/src/views/popup-notification.js | 2 +- client/src/views/portal-role/list.js | 2 +- client/src/views/portal-role/record/detail.js | 2 +- client/src/views/portal-role/record/edit.js | 2 +- client/src/views/portal-role/record/list.js | 2 +- client/src/views/portal-role/record/table.js | 2 +- client/src/views/portal-user/list.js | 2 +- client/src/views/portal/fields/custom-id.js | 2 +- .../views/portal/fields/quick-create-list.js | 2 +- client/src/views/portal/fields/tab-list.js | 2 +- client/src/views/preferences/edit.js | 2 +- .../fields/auto-follow-entity-type-list.js | 2 +- .../preferences/fields/dashboard-tab-list.js | 2 +- .../views/preferences/fields/date-format.js | 2 +- .../preferences/fields/default-currency.js | 2 +- .../src/views/preferences/fields/language.js | 2 +- .../preferences/fields/smtp-email-address.js | 2 +- .../src/views/preferences/fields/tab-list.js | 2 +- .../src/views/preferences/fields/test-send.js | 2 +- client/src/views/preferences/fields/theme.js | 2 +- .../views/preferences/fields/time-format.js | 2 +- .../src/views/preferences/fields/time-zone.js | 2 +- .../views/preferences/fields/week-start.js | 2 +- client/src/views/preferences/record/edit.js | 2 +- client/src/views/record/base.js | 2 +- client/src/views/record/detail-bottom.js | 2 +- client/src/views/record/detail-middle.js | 2 +- client/src/views/record/detail-side.js | 2 +- client/src/views/record/detail-small.js | 2 +- client/src/views/record/detail.js | 2 +- client/src/views/record/edit-bottom.js | 2 +- client/src/views/record/edit-side.js | 2 +- client/src/views/record/edit-small.js | 2 +- client/src/views/record/edit.js | 2 +- client/src/views/record/list-expanded.js | 2 +- client/src/views/record/list-pagination.js | 2 +- client/src/views/record/list-tree-item.js | 2 +- client/src/views/record/list-tree.js | 2 +- client/src/views/record/list.js | 2 +- client/src/views/record/merge.js | 2 +- client/src/views/record/panels/bottom.js | 2 +- .../src/views/record/panels/default-side.js | 2 +- .../src/views/record/panels/relationship.js | 2 +- client/src/views/record/panels/side.js | 2 +- .../src/views/record/row-actions/default.js | 2 +- .../record/row-actions/edit-and-remove.js | 2 +- client/src/views/record/row-actions/empty.js | 2 +- .../relationship-edit-and-remove.js | 2 +- .../row-actions/relationship-no-remove.js | 2 +- .../row-actions/relationship-no-unlink.js | 2 +- .../row-actions/relationship-remove-only.js | 2 +- .../row-actions/relationship-unlink-only.js | 2 +- .../row-actions/relationship-view-and-edit.js | 2 +- .../relationship-view-and-unlink.js | 2 +- .../views/record/row-actions/relationship.js | 2 +- .../views/record/row-actions/remove-only.js | 2 +- .../views/record/row-actions/view-and-edit.js | 2 +- .../record/row-actions/view-and-remove.js | 2 +- client/src/views/record/search.js | 2 +- client/src/views/role/list.js | 2 +- client/src/views/role/modals/add-field.js | 2 +- client/src/views/role/record/detail-side.js | 2 +- client/src/views/role/record/detail.js | 2 +- client/src/views/role/record/edit.js | 2 +- client/src/views/role/record/list.js | 2 +- client/src/views/role/record/panels/side.js | 2 +- client/src/views/role/record/table.js | 2 +- client/src/views/scheduled-job/fields/job.js | 2 +- .../views/scheduled-job/fields/scheduling.js | 2 +- client/src/views/scheduled-job/list.js | 2 +- .../src/views/scheduled-job/record/detail.js | 2 +- client/src/views/scheduled-job/record/list.js | 2 +- client/src/views/search/filter.js | 2 +- client/src/views/settings/edit.js | 2 +- .../settings/fields/activities-entity-list.js | 2 +- .../views/settings/fields/address-preview.js | 2 +- ...ignment-email-notifications-entity-list.js | 2 +- .../assignment-notifications-entity-list.js | 2 +- .../settings/fields/calendar-entity-list.js | 2 +- .../views/settings/fields/currency-rates.js | 2 +- .../views/settings/fields/dashboard-layout.js | 2 +- .../views/settings/fields/default-currency.js | 2 +- .../fields/global-search-entity-list.js | 2 +- .../settings/fields/history-entity-list.js | 2 +- client/src/views/settings/fields/language.js | 2 +- .../settings/fields/quick-create-list.js | 2 +- .../stream-email-notifications-entity-list.js | 2 +- client/src/views/settings/fields/tab-list.js | 2 +- client/src/views/settings/fields/theme.js | 2 +- .../settings/fields/thousand-separator.js | 2 +- client/src/views/settings/record/edit.js | 2 +- client/src/views/site-portal/header.js | 2 +- client/src/views/site-portal/master.js | 2 +- client/src/views/site-portal/navbar.js | 2 +- client/src/views/site/footer.js | 2 +- client/src/views/site/header.js | 2 +- client/src/views/site/master.js | 2 +- client/src/views/site/navbar.js | 2 +- client/src/views/stream.js | 2 +- .../stream/fields/attachment-multiple.js | 2 +- client/src/views/stream/fields/post.js | 2 +- client/src/views/stream/message.js | 2 +- client/src/views/stream/modals/create-post.js | 2 +- client/src/views/stream/note.js | 2 +- client/src/views/stream/notes/assign.js | 2 +- .../src/views/stream/notes/create-related.js | 2 +- client/src/views/stream/notes/create.js | 2 +- .../src/views/stream/notes/email-received.js | 2 +- client/src/views/stream/notes/email-sent.js | 2 +- .../src/views/stream/notes/mention-in-post.js | 2 +- client/src/views/stream/notes/post.js | 2 +- client/src/views/stream/notes/relate.js | 2 +- client/src/views/stream/notes/status.js | 2 +- client/src/views/stream/notes/update.js | 2 +- client/src/views/stream/panel.js | 2 +- client/src/views/stream/record/edit.js | 2 +- client/src/views/stream/record/list.js | 2 +- .../src/views/stream/row-actions/default.js | 2 +- client/src/views/team/record/detail.js | 2 +- client/src/views/team/record/edit.js | 2 +- client/src/views/team/record/list.js | 2 +- client/src/views/template/fields/variables.js | 2 +- client/src/views/template/record/detail.js | 2 +- client/src/views/template/record/edit.js | 2 +- client/src/views/user/detail.js | 2 +- .../fields/auto-follow-entity-type-list.js | 2 +- client/src/views/user/fields/avatar.js | 2 +- client/src/views/user/fields/contact.js | 2 +- .../views/user/fields/generate-password.js | 2 +- client/src/views/user/fields/name.js | 2 +- client/src/views/user/fields/teams.js | 2 +- client/src/views/user/fields/user-name.js | 2 +- client/src/views/user/list.js | 2 +- client/src/views/user/modals/access.js | 2 +- client/src/views/user/modals/detail.js | 2 +- .../src/views/user/password-change-request.js | 2 +- client/src/views/user/record/detail-bottom.js | 2 +- .../views/user/record/detail-quick-side.js | 2 +- client/src/views/user/record/detail-quick.js | 2 +- client/src/views/user/record/detail-side.js | 2 +- client/src/views/user/record/detail.js | 2 +- client/src/views/user/record/edit-quick.js | 2 +- client/src/views/user/record/edit-side.js | 2 +- client/src/views/user/record/edit.js | 2 +- client/src/views/user/record/list.js | 2 +- client/src/views/user/record/panels/stream.js | 2 +- cron.php | 2 +- data/.data | 0 diff.js | 2 +- extension.php | 11 ++----- frontend/test/jet-test.js | 2 +- frontend/test/spec/test.acl.js | 2 +- frontend/test/spec/test.cache.js | 2 +- frontend/test/spec/test.collection.js | 2 +- frontend/test/spec/test.controller.js | 2 +- frontend/test/spec/test.date-time.js | 2 +- frontend/test/spec/test.field-manager.js | 2 +- frontend/test/spec/test.layout-manager.js | 2 +- frontend/test/spec/test.loader.js | 2 +- frontend/test/spec/test.metadata.js | 2 +- frontend/test/spec/test.model.js | 2 +- frontend/test/spec/test.router.js | 2 +- frontend/test/spec/test.search-manager.js | 2 +- frontend/test/spec/test.utils.js | 2 +- .../test/spec/views/record/test.detail.js | 2 +- index.php | 2 +- install/core/Installer.php | 2 +- install/core/Language.php | 2 +- install/core/SystemHelper.php | 2 +- install/core/Utils.php | 2 +- install/core/actions/applySett.php | 2 +- install/core/actions/buildDatabase.php | 2 +- install/core/actions/checkPermission.php | 2 +- install/core/actions/createUser.php | 2 +- install/core/actions/errors.php | 2 +- install/core/actions/finish.php | 2 +- install/core/actions/main.php | 2 +- install/core/actions/setEmailSett.php | 2 +- install/core/actions/setPreferences.php | 2 +- install/core/actions/settingsTest.php | 2 +- install/core/actions/setupConfirmation.php | 2 +- install/core/actions/step1.php | 2 +- install/core/actions/step2.php | 2 +- install/core/actions/step3.php | 2 +- install/core/actions/step4.php | 2 +- install/core/actions/step5.php | 2 +- install/core/afterInstall/config.php | 2 +- install/core/afterInstall/queries.php | 2 +- install/core/afterInstall/records.php | 2 +- install/core/config.php | 2 +- install/index.php | 2 +- install/js/install.js | 2 +- lang.js | 2 +- po.js | 2 +- portal/index.php | 2 +- rebuild.php | 2 +- tests/integration/Core/ApiClient.php | 2 +- tests/integration/Core/BaseTestCase.php | 2 +- tests/integration/Core/DataLoader.php | 2 +- tests/integration/Core/Tester.php | 2 +- tests/integration/Core/Utils.php | 2 +- .../Espo/Account/ChangeFieldsTest.php | 2 +- tests/integration/Espo/Account/CreateTest.php | 2 +- tests/integration/Espo/Account/SearchTest.php | 2 +- .../Espo/Email/SearchByEmailAddressTest.php | 2 +- .../Espo/Extension/GeneralTest.php | 2 +- .../integration/Espo/Upgrade/GeneralTest.php | 2 +- tests/integration/Espo/User/AclTest.php | 2 +- .../integration/Espo/User/CreateUserTest.php | 2 +- tests/integration/Espo/User/LoginTest.php | 2 +- .../testData/Account/ChangeFields.php | 2 +- tests/integration/testData/InitData.php | 2 +- tests/integration/testData/User/Login.php | 2 +- tests/unit/Espo/Core/CronManagerTest.php | 2 +- .../unit/Espo/Core/EntryPointManagerTest.php | 2 +- .../unit/Espo/Core/Formula/EvaluatorTest.php | 2 +- tests/unit/Espo/Core/Formula/FormulaTest.php | 2 +- tests/unit/Espo/Core/Formula/ParserTest.php | 2 +- tests/unit/Espo/Core/HookManagerTest.php | 2 +- .../unit/Espo/Core/Htmlizer/HtmlizerTest.php | 2 +- .../Espo/Core/Mail/FiltersMatcherTest.php | 2 +- tests/unit/Espo/Core/Mail/ImporterTest.php | 2 +- tests/unit/Espo/Core/SelectManagers/Base.php | 2 +- .../Espo/Core/Upgrades/ActionManagerTest.php | 2 +- .../unit/Espo/Core/Upgrades/Actions/Base.php | 2 +- .../Espo/Core/Upgrades/Actions/BaseTest.php | 2 +- tests/unit/Espo/Core/Utils/ConfigTest.php | 2 +- tests/unit/Espo/Core/Utils/DataUtilTest.php | 2 +- .../unit/Espo/Core/Utils/FieldManagerTest.php | 2 +- .../Espo/Core/Utils/File/ClassParserTest.php | 2 +- .../unit/Espo/Core/Utils/File/ManagerTest.php | 2 +- .../Espo/Core/Utils/File/PermissionTest.php | 2 +- tests/unit/Espo/Core/Utils/JsonTest.php | 2 +- tests/unit/Espo/Core/Utils/LanguageTest.php | 2 +- tests/unit/Espo/Core/Utils/LayoutTest.php | 2 +- tests/unit/Espo/Core/Utils/MetadataTest.php | 2 +- .../unit/Espo/Core/Utils/PasswordHashTest.php | 2 +- .../unit/Espo/Core/Utils/ScheduledJobTest.php | 2 +- tests/unit/Espo/Core/Utils/SystemTest.php | 2 +- tests/unit/Espo/Core/Utils/UtilTest.php | 2 +- tests/unit/Espo/Entities/EmailTest.php | 2 +- tests/unit/Espo/ORM/DB/MapperTest.php | 2 +- tests/unit/Espo/ORM/DB/QueryTest.php | 2 +- tests/unit/Espo/Services/ImportTest.php | 2 +- tests/unit/ReflectionHelper.php | 2 +- upgrade.php | 11 ++----- 1266 files changed, 2967 insertions(+), 1281 deletions(-) mode change 100644 => 100755 data/.data diff --git a/Gruntfile.js b/Gruntfile.js index 31ff6363d3..0dcc342832 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/api/v1/index.php b/api/v1/index.php index a8da769e68..e4e66c30ee 100644 --- a/api/v1/index.php +++ b/api/v1/index.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/api/v1/portal-access/index.php b/api/v1/portal-access/index.php index bbd6613cfb..8bc243a967 100644 --- a/api/v1/portal-access/index.php +++ b/api/v1/portal-access/index.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Acl/Attachment.php b/application/Espo/Acl/Attachment.php index 8c19f5ffe3..39da54f196 100644 --- a/application/Espo/Acl/Attachment.php +++ b/application/Espo/Acl/Attachment.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Acl/Email.php b/application/Espo/Acl/Email.php index 5d9bccdc18..f4de88012c 100644 --- a/application/Espo/Acl/Email.php +++ b/application/Espo/Acl/Email.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Acl/EmailFilter.php b/application/Espo/Acl/EmailFilter.php index 1c54260889..4a05983484 100644 --- a/application/Espo/Acl/EmailFilter.php +++ b/application/Espo/Acl/EmailFilter.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Acl/Notification.php b/application/Espo/Acl/Notification.php index 6235aae661..49786dec1d 100644 --- a/application/Espo/Acl/Notification.php +++ b/application/Espo/Acl/Notification.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Acl/Team.php b/application/Espo/Acl/Team.php index 313bfbca12..d5a6e8c444 100644 --- a/application/Espo/Acl/Team.php +++ b/application/Espo/Acl/Team.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Acl/User.php b/application/Espo/Acl/User.php index 1edba5aeeb..d2d644df07 100644 --- a/application/Espo/Acl/User.php +++ b/application/Espo/Acl/User.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/AclPortal/Attachment.php b/application/Espo/AclPortal/Attachment.php index e84d06c13a..46b7f5a1c0 100644 --- a/application/Espo/AclPortal/Attachment.php +++ b/application/Espo/AclPortal/Attachment.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/AclPortal/Email.php b/application/Espo/AclPortal/Email.php index aa0f8d758f..2a9cdec732 100644 --- a/application/Espo/AclPortal/Email.php +++ b/application/Espo/AclPortal/Email.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/AclPortal/Notification.php b/application/Espo/AclPortal/Notification.php index cb897def85..e3b5045e0c 100644 --- a/application/Espo/AclPortal/Notification.php +++ b/application/Espo/AclPortal/Notification.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/AclPortal/User.php b/application/Espo/AclPortal/User.php index 9833d95676..57508f954c 100644 --- a/application/Espo/AclPortal/User.php +++ b/application/Espo/AclPortal/User.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Admin.php b/application/Espo/Controllers/Admin.php index a65c4d0a37..ecc41f8d38 100644 --- a/application/Espo/Controllers/Admin.php +++ b/application/Espo/Controllers/Admin.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/App.php b/application/Espo/Controllers/App.php index 182727aa60..1c8f4ce9c8 100644 --- a/application/Espo/Controllers/App.php +++ b/application/Espo/Controllers/App.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Attachment.php b/application/Espo/Controllers/Attachment.php index 94feb87afb..f7935efce8 100644 --- a/application/Espo/Controllers/Attachment.php +++ b/application/Espo/Controllers/Attachment.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/AuthToken.php b/application/Espo/Controllers/AuthToken.php index a1a6a6c70c..ad059a727c 100644 --- a/application/Espo/Controllers/AuthToken.php +++ b/application/Espo/Controllers/AuthToken.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Email.php b/application/Espo/Controllers/Email.php index f562a21018..4d3daedfb8 100644 --- a/application/Espo/Controllers/Email.php +++ b/application/Espo/Controllers/Email.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/EmailAccount.php b/application/Espo/Controllers/EmailAccount.php index 566137f032..fb88ae74bc 100644 --- a/application/Espo/Controllers/EmailAccount.php +++ b/application/Espo/Controllers/EmailAccount.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/EmailAddress.php b/application/Espo/Controllers/EmailAddress.php index 1f0d92cb39..2b8602b909 100644 --- a/application/Espo/Controllers/EmailAddress.php +++ b/application/Espo/Controllers/EmailAddress.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/EmailFilter.php b/application/Espo/Controllers/EmailFilter.php index 70ab2d184c..67fc0c6342 100644 --- a/application/Espo/Controllers/EmailFilter.php +++ b/application/Espo/Controllers/EmailFilter.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/EmailFolder.php b/application/Espo/Controllers/EmailFolder.php index 4eb03157a4..06af32a765 100644 --- a/application/Espo/Controllers/EmailFolder.php +++ b/application/Espo/Controllers/EmailFolder.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/EmailTemplate.php b/application/Espo/Controllers/EmailTemplate.php index 8436d2f50e..aa4ba950d3 100644 --- a/application/Espo/Controllers/EmailTemplate.php +++ b/application/Espo/Controllers/EmailTemplate.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/EntityManager.php b/application/Espo/Controllers/EntityManager.php index e059edad0a..91d9c17118 100644 --- a/application/Espo/Controllers/EntityManager.php +++ b/application/Espo/Controllers/EntityManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Extension.php b/application/Espo/Controllers/Extension.php index 958de50841..2d88b8d5bc 100644 --- a/application/Espo/Controllers/Extension.php +++ b/application/Espo/Controllers/Extension.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/ExternalAccount.php b/application/Espo/Controllers/ExternalAccount.php index 10119f61ef..f62aef4c77 100644 --- a/application/Espo/Controllers/ExternalAccount.php +++ b/application/Espo/Controllers/ExternalAccount.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/FieldManager.php b/application/Espo/Controllers/FieldManager.php index 0e0ec66aa4..c88f935833 100644 --- a/application/Espo/Controllers/FieldManager.php +++ b/application/Espo/Controllers/FieldManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/GlobalSearch.php b/application/Espo/Controllers/GlobalSearch.php index eb65263d69..e3db8c7515 100644 --- a/application/Espo/Controllers/GlobalSearch.php +++ b/application/Espo/Controllers/GlobalSearch.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/I18n.php b/application/Espo/Controllers/I18n.php index 43f50c1de2..a8ab6cddc8 100644 --- a/application/Espo/Controllers/I18n.php +++ b/application/Espo/Controllers/I18n.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Import.php b/application/Espo/Controllers/Import.php index 65a448482e..6c75d7edc8 100644 --- a/application/Espo/Controllers/Import.php +++ b/application/Espo/Controllers/Import.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/InboundEmail.php b/application/Espo/Controllers/InboundEmail.php index 0d6a53b85c..8256ca530b 100644 --- a/application/Espo/Controllers/InboundEmail.php +++ b/application/Espo/Controllers/InboundEmail.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Integration.php b/application/Espo/Controllers/Integration.php index 590b01e489..fab680a5e4 100644 --- a/application/Espo/Controllers/Integration.php +++ b/application/Espo/Controllers/Integration.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Job.php b/application/Espo/Controllers/Job.php index 670e986cbd..187ce53f93 100644 --- a/application/Espo/Controllers/Job.php +++ b/application/Espo/Controllers/Job.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Layout.php b/application/Espo/Controllers/Layout.php index 136d4979b2..89645b8a34 100644 --- a/application/Espo/Controllers/Layout.php +++ b/application/Espo/Controllers/Layout.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Metadata.php b/application/Espo/Controllers/Metadata.php index 3fe4d21fe0..d59449071e 100644 --- a/application/Espo/Controllers/Metadata.php +++ b/application/Espo/Controllers/Metadata.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Note.php b/application/Espo/Controllers/Note.php index 88883839b9..bb08b0b233 100644 --- a/application/Espo/Controllers/Note.php +++ b/application/Espo/Controllers/Note.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Notification.php b/application/Espo/Controllers/Notification.php index fcab26ffc1..6f38f6207e 100644 --- a/application/Espo/Controllers/Notification.php +++ b/application/Espo/Controllers/Notification.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Portal.php b/application/Espo/Controllers/Portal.php index 33a16c6e20..289fa634d4 100644 --- a/application/Espo/Controllers/Portal.php +++ b/application/Espo/Controllers/Portal.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/PortalRole.php b/application/Espo/Controllers/PortalRole.php index 87976ce77f..6166a83eb8 100644 --- a/application/Espo/Controllers/PortalRole.php +++ b/application/Espo/Controllers/PortalRole.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Preferences.php b/application/Espo/Controllers/Preferences.php index e2df7a1e14..96f7206829 100644 --- a/application/Espo/Controllers/Preferences.php +++ b/application/Espo/Controllers/Preferences.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Role.php b/application/Espo/Controllers/Role.php index 498bd308b0..4e3a4ef8cc 100644 --- a/application/Espo/Controllers/Role.php +++ b/application/Espo/Controllers/Role.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/ScheduledJob.php b/application/Espo/Controllers/ScheduledJob.php index 5ec206d4bc..2a2697b25e 100644 --- a/application/Espo/Controllers/ScheduledJob.php +++ b/application/Espo/Controllers/ScheduledJob.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/ScheduledJobLogRecord.php b/application/Espo/Controllers/ScheduledJobLogRecord.php index 714a927a19..22c448059a 100644 --- a/application/Espo/Controllers/ScheduledJobLogRecord.php +++ b/application/Espo/Controllers/ScheduledJobLogRecord.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Settings.php b/application/Espo/Controllers/Settings.php index a856092709..d59ed8138e 100644 --- a/application/Espo/Controllers/Settings.php +++ b/application/Espo/Controllers/Settings.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Stream.php b/application/Espo/Controllers/Stream.php index ff2b83123e..3d101895d7 100644 --- a/application/Espo/Controllers/Stream.php +++ b/application/Espo/Controllers/Stream.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Team.php b/application/Espo/Controllers/Team.php index acad8a1570..4d4f693a95 100644 --- a/application/Espo/Controllers/Team.php +++ b/application/Espo/Controllers/Team.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/Template.php b/application/Espo/Controllers/Template.php index a71eabfe60..0a154d8594 100644 --- a/application/Espo/Controllers/Template.php +++ b/application/Espo/Controllers/Template.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Controllers/User.php b/application/Espo/Controllers/User.php index 0eab3b7032..af69549693 100644 --- a/application/Espo/Controllers/User.php +++ b/application/Espo/Controllers/User.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Acl.php b/application/Espo/Core/Acl.php index e70f275721..6bba2ec7a2 100644 --- a/application/Espo/Core/Acl.php +++ b/application/Espo/Core/Acl.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Acl/Base.php b/application/Espo/Core/Acl/Base.php index d134105221..2f8f0d66ff 100644 --- a/application/Espo/Core/Acl/Base.php +++ b/application/Espo/Core/Acl/Base.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Acl/Table.php b/application/Espo/Core/Acl/Table.php index 7c51cab1ea..c99e1d5025 100644 --- a/application/Espo/Core/Acl/Table.php +++ b/application/Espo/Core/Acl/Table.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/AclManager.php b/application/Espo/Core/AclManager.php index 08b0d60a31..f9ca1058b3 100644 --- a/application/Espo/Core/AclManager.php +++ b/application/Espo/Core/AclManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/AclPortal/Base.php b/application/Espo/Core/AclPortal/Base.php index 810d2a5a97..8f4f9da381 100644 --- a/application/Espo/Core/AclPortal/Base.php +++ b/application/Espo/Core/AclPortal/Base.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/AclPortal/Table.php b/application/Espo/Core/AclPortal/Table.php index 549173b85a..faa21058c0 100644 --- a/application/Espo/Core/AclPortal/Table.php +++ b/application/Espo/Core/AclPortal/Table.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Application.php b/application/Espo/Core/Application.php index 47f9888051..3785f22e91 100644 --- a/application/Espo/Core/Application.php +++ b/application/Espo/Core/Application.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Container.php b/application/Espo/Core/Container.php index 710c7b78d7..4612cf7477 100644 --- a/application/Espo/Core/Container.php +++ b/application/Espo/Core/Container.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ControllerManager.php b/application/Espo/Core/ControllerManager.php index 05afad6aad..d5fc655b97 100644 --- a/application/Espo/Core/ControllerManager.php +++ b/application/Espo/Core/ControllerManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Controllers/Base.php b/application/Espo/Core/Controllers/Base.php index fb56afebcf..b33df579fe 100644 --- a/application/Espo/Core/Controllers/Base.php +++ b/application/Espo/Core/Controllers/Base.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Controllers/Record.php b/application/Espo/Core/Controllers/Record.php index b12f0ce9c9..2bd7a30e39 100644 --- a/application/Espo/Core/Controllers/Record.php +++ b/application/Espo/Core/Controllers/Record.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Controllers/RecordTree.php b/application/Espo/Core/Controllers/RecordTree.php index 08292dc610..e32e04d094 100644 --- a/application/Espo/Core/Controllers/RecordTree.php +++ b/application/Espo/Core/Controllers/RecordTree.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/CronManager.php b/application/Espo/Core/CronManager.php index ec3c8b8a4f..aa9dabbf87 100644 --- a/application/Espo/Core/CronManager.php +++ b/application/Espo/Core/CronManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/DataManager.php b/application/Espo/Core/DataManager.php index 35e8acb342..700d72e747 100644 --- a/application/Espo/Core/DataManager.php +++ b/application/Espo/Core/DataManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Entities/CategoryTreeItem.php b/application/Espo/Core/Entities/CategoryTreeItem.php index 2b5e6fda26..9c41db3975 100644 --- a/application/Espo/Core/Entities/CategoryTreeItem.php +++ b/application/Espo/Core/Entities/CategoryTreeItem.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Entities/Person.php b/application/Espo/Core/Entities/Person.php index 19dc5f49a7..097efacca0 100644 --- a/application/Espo/Core/Entities/Person.php +++ b/application/Espo/Core/Entities/Person.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/EntryPointManager.php b/application/Espo/Core/EntryPointManager.php index 63ae28e51f..cfe1f4f4f6 100644 --- a/application/Espo/Core/EntryPointManager.php +++ b/application/Espo/Core/EntryPointManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/EntryPoints/Base.php b/application/Espo/Core/EntryPoints/Base.php index 32c420e278..0e3e4308b1 100644 --- a/application/Espo/Core/EntryPoints/Base.php +++ b/application/Espo/Core/EntryPoints/Base.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/BadRequest.php b/application/Espo/Core/Exceptions/BadRequest.php index 607c9db1c4..bfef50cc5f 100644 --- a/application/Espo/Core/Exceptions/BadRequest.php +++ b/application/Espo/Core/Exceptions/BadRequest.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/Conflict.php b/application/Espo/Core/Exceptions/Conflict.php index 0f159bf997..114c4fc704 100644 --- a/application/Espo/Core/Exceptions/Conflict.php +++ b/application/Espo/Core/Exceptions/Conflict.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/Error.php b/application/Espo/Core/Exceptions/Error.php index c8a470961b..f8fe57f829 100644 --- a/application/Espo/Core/Exceptions/Error.php +++ b/application/Espo/Core/Exceptions/Error.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/Forbidden.php b/application/Espo/Core/Exceptions/Forbidden.php index eaa16d1beb..99d2e1780c 100644 --- a/application/Espo/Core/Exceptions/Forbidden.php +++ b/application/Espo/Core/Exceptions/Forbidden.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/InternalServerError.php b/application/Espo/Core/Exceptions/InternalServerError.php index a199d070ad..48b3f662ed 100644 --- a/application/Espo/Core/Exceptions/InternalServerError.php +++ b/application/Espo/Core/Exceptions/InternalServerError.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/NotFound.php b/application/Espo/Core/Exceptions/NotFound.php index 39f626a2e9..fdd0d1ed50 100644 --- a/application/Espo/Core/Exceptions/NotFound.php +++ b/application/Espo/Core/Exceptions/NotFound.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Exceptions/Unauthorized.php b/application/Espo/Core/Exceptions/Unauthorized.php index f374e1251d..bede774d6a 100644 --- a/application/Espo/Core/Exceptions/Unauthorized.php +++ b/application/Espo/Core/Exceptions/Unauthorized.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ExtensionManager.php b/application/Espo/Core/ExtensionManager.php index 7b3633d80f..b97e3beb4e 100644 --- a/application/Espo/Core/ExtensionManager.php +++ b/application/Espo/Core/ExtensionManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ExternalAccount/ClientManager.php b/application/Espo/Core/ExternalAccount/ClientManager.php index ea5711b8aa..e94b61f94e 100644 --- a/application/Espo/Core/ExternalAccount/ClientManager.php +++ b/application/Espo/Core/ExternalAccount/ClientManager.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ExternalAccount/Clients/Google.php b/application/Espo/Core/ExternalAccount/Clients/Google.php index cee7c571f1..9797a966f4 100644 --- a/application/Espo/Core/ExternalAccount/Clients/Google.php +++ b/application/Espo/Core/ExternalAccount/Clients/Google.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ExternalAccount/Clients/IClient.php b/application/Espo/Core/ExternalAccount/Clients/IClient.php index af94bd243c..707f952062 100644 --- a/application/Espo/Core/ExternalAccount/Clients/IClient.php +++ b/application/Espo/Core/ExternalAccount/Clients/IClient.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ExternalAccount/Clients/OAuth2Abstract.php b/application/Espo/Core/ExternalAccount/Clients/OAuth2Abstract.php index 7263230884..bb99e9c913 100644 --- a/application/Espo/Core/ExternalAccount/Clients/OAuth2Abstract.php +++ b/application/Espo/Core/ExternalAccount/Clients/OAuth2Abstract.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/ExternalAccount/OAuth2/Client.php b/application/Espo/Core/ExternalAccount/OAuth2/Client.php index 3e9f545fae..306c88f1f5 100644 --- a/application/Espo/Core/ExternalAccount/OAuth2/Client.php +++ b/application/Espo/Core/ExternalAccount/OAuth2/Client.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/application/Espo/Core/Formula/AttributeFetcher.php b/application/Espo/Core/Formula/AttributeFetcher.php index 59aa99e320..3dc23d1a20 100644 --- a/application/Espo/Core/Formula/AttributeFetcher.php +++ b/application/Espo/Core/Formula/AttributeFetcher.php @@ -1,4 +1,31 @@ -
Version {{version}}

- Copyright © 2014-2016 EspoCRM: Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko. + Copyright © 2014-2017 EspoCRM: Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko.
Website: http://www.espocrm.com.

diff --git a/client/res/templates/site/footer.tpl b/client/res/templates/site/footer.tpl index 91031398eb..166e4dfc07 100644 --- a/client/res/templates/site/footer.tpl +++ b/client/res/templates/site/footer.tpl @@ -1,2 +1,2 @@ -

© 2016 EspoCRM

+

© 2017 EspoCRM

diff --git a/client/src/acl-manager.js b/client/src/acl-manager.js index cd27ee10aa..f62b3b3644 100644 --- a/client/src/acl-manager.js +++ b/client/src/acl-manager.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl-portal-manager.js b/client/src/acl-portal-manager.js index d1828c510e..85c133cb3c 100644 --- a/client/src/acl-portal-manager.js +++ b/client/src/acl-portal-manager.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl-portal.js b/client/src/acl-portal.js index 890bd8109f..124ae3995e 100644 --- a/client/src/acl-portal.js +++ b/client/src/acl-portal.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl-portal/email.js b/client/src/acl-portal/email.js index e7190dbd3b..bbad35f3e3 100644 --- a/client/src/acl-portal/email.js +++ b/client/src/acl-portal/email.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl-portal/preferences.js b/client/src/acl-portal/preferences.js index 031e35b998..1d272e8faf 100644 --- a/client/src/acl-portal/preferences.js +++ b/client/src/acl-portal/preferences.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl.js b/client/src/acl.js index b19e16a927..7799254b29 100644 --- a/client/src/acl.js +++ b/client/src/acl.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl/email.js b/client/src/acl/email.js index 462787d4d9..6a162bc23d 100644 --- a/client/src/acl/email.js +++ b/client/src/acl/email.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/acl/preferences.js b/client/src/acl/preferences.js index 79d7913456..3a92687151 100644 --- a/client/src/acl/preferences.js +++ b/client/src/acl/preferences.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/ajax.js b/client/src/ajax.js index 3c51f718d5..3ffa5aa345 100644 --- a/client/src/ajax.js +++ b/client/src/ajax.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/app-portal.js b/client/src/app-portal.js index f0ede013b4..389af9b5ff 100644 --- a/client/src/app-portal.js +++ b/client/src/app-portal.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/app.js b/client/src/app.js index 4214102c53..2e0cd4e41c 100644 --- a/client/src/app.js +++ b/client/src/app.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/cache.js b/client/src/cache.js index 78c4c95add..6847146abe 100644 --- a/client/src/cache.js +++ b/client/src/cache.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/collection-factory.js b/client/src/collection-factory.js index d35a8555dd..a74151bf51 100644 --- a/client/src/collection-factory.js +++ b/client/src/collection-factory.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/collection.js b/client/src/collection.js index b898494b9f..5e511c0da6 100644 --- a/client/src/collection.js +++ b/client/src/collection.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/collections/note.js b/client/src/collections/note.js index 1089f346f0..a220b75b1a 100644 --- a/client/src/collections/note.js +++ b/client/src/collections/note.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/collections/tree.js b/client/src/collections/tree.js index e51b35a8e8..32935eb31e 100644 --- a/client/src/collections/tree.js +++ b/client/src/collections/tree.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controller.js b/client/src/controller.js index 0bf727e94e..583f0f0bcf 100644 --- a/client/src/controller.js +++ b/client/src/controller.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/about.js b/client/src/controllers/about.js index 83e715e05e..9f01b506c7 100644 --- a/client/src/controllers/about.js +++ b/client/src/controllers/about.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/admin.js b/client/src/controllers/admin.js index 22622142ed..3d1b4fc361 100644 --- a/client/src/controllers/admin.js +++ b/client/src/controllers/admin.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/base.js b/client/src/controllers/base.js index 9af5652259..41eefaa22c 100644 --- a/client/src/controllers/base.js +++ b/client/src/controllers/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/dashboard.js b/client/src/controllers/dashboard.js index 650efd8867..72e9178042 100644 --- a/client/src/controllers/dashboard.js +++ b/client/src/controllers/dashboard.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/email-account.js b/client/src/controllers/email-account.js index d1e17be27a..9d55eb1aae 100644 --- a/client/src/controllers/email-account.js +++ b/client/src/controllers/email-account.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/external-account.js b/client/src/controllers/external-account.js index 5ba3f7c191..ba542ae72f 100644 --- a/client/src/controllers/external-account.js +++ b/client/src/controllers/external-account.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/home.js b/client/src/controllers/home.js index 97db131219..c22f7119cd 100644 --- a/client/src/controllers/home.js +++ b/client/src/controllers/home.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/import.js b/client/src/controllers/import.js index 5dcacfd21f..e44a45edbb 100644 --- a/client/src/controllers/import.js +++ b/client/src/controllers/import.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/inbound-email.js b/client/src/controllers/inbound-email.js index 13a9a38206..88137089a0 100644 --- a/client/src/controllers/inbound-email.js +++ b/client/src/controllers/inbound-email.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/notification.js b/client/src/controllers/notification.js index c6cc2b32ac..4d545b12ee 100644 --- a/client/src/controllers/notification.js +++ b/client/src/controllers/notification.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/page.js b/client/src/controllers/page.js index e4d5997d80..3a91b0686f 100644 --- a/client/src/controllers/page.js +++ b/client/src/controllers/page.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/password-change-request.js b/client/src/controllers/password-change-request.js index cfbade0f07..6a2023b402 100644 --- a/client/src/controllers/password-change-request.js +++ b/client/src/controllers/password-change-request.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/portal-role.js b/client/src/controllers/portal-role.js index 2e6d49f30f..2b204dc542 100644 --- a/client/src/controllers/portal-role.js +++ b/client/src/controllers/portal-role.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/portal-user.js b/client/src/controllers/portal-user.js index e9a35292a5..9b4430f8d9 100644 --- a/client/src/controllers/portal-user.js +++ b/client/src/controllers/portal-user.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/preferences.js b/client/src/controllers/preferences.js index 8f2bf8c10d..d22848697e 100644 --- a/client/src/controllers/preferences.js +++ b/client/src/controllers/preferences.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/record-tree.js b/client/src/controllers/record-tree.js index 5678d83bab..0ffad2366d 100644 --- a/client/src/controllers/record-tree.js +++ b/client/src/controllers/record-tree.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/record.js b/client/src/controllers/record.js index 4dbd9ee22d..1f92c84043 100644 --- a/client/src/controllers/record.js +++ b/client/src/controllers/record.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/role.js b/client/src/controllers/role.js index dad1ad962b..3f83854246 100644 --- a/client/src/controllers/role.js +++ b/client/src/controllers/role.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/stream.js b/client/src/controllers/stream.js index 183b612c75..95acef2f37 100644 --- a/client/src/controllers/stream.js +++ b/client/src/controllers/stream.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/team.js b/client/src/controllers/team.js index 4209a06fa8..c34b306c2b 100644 --- a/client/src/controllers/team.js +++ b/client/src/controllers/team.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/controllers/user.js b/client/src/controllers/user.js index 691515f183..1d568b9265 100644 --- a/client/src/controllers/user.js +++ b/client/src/controllers/user.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/date-time.js b/client/src/date-time.js index b97a81b0eb..43cb533d4b 100644 --- a/client/src/date-time.js +++ b/client/src/date-time.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/dynamic-logic.js b/client/src/dynamic-logic.js index a76935d0e5..0a1a51c7d6 100644 --- a/client/src/dynamic-logic.js +++ b/client/src/dynamic-logic.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/email-helper.js b/client/src/email-helper.js index a86c0e7d5d..499137f2d8 100644 --- a/client/src/email-helper.js +++ b/client/src/email-helper.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/exceptions.js b/client/src/exceptions.js index cd3ed916fb..5bc4875aaf 100644 --- a/client/src/exceptions.js +++ b/client/src/exceptions.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/field-manager.js b/client/src/field-manager.js index 0a795e9450..9b4936b90a 100644 --- a/client/src/field-manager.js +++ b/client/src/field-manager.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/language.js b/client/src/language.js index ab3264cb2f..539d717756 100644 --- a/client/src/language.js +++ b/client/src/language.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/layout-manager.js b/client/src/layout-manager.js index 14fbe6db72..40c57635a0 100644 --- a/client/src/layout-manager.js +++ b/client/src/layout-manager.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/loader.js b/client/src/loader.js index 4a17542111..2ce7cc9358 100644 --- a/client/src/loader.js +++ b/client/src/loader.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/metadata.js b/client/src/metadata.js index 53cd82f170..d3fd583369 100644 --- a/client/src/metadata.js +++ b/client/src/metadata.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/model-factory.js b/client/src/model-factory.js index 268eb42309..5f9319f958 100644 --- a/client/src/model-factory.js +++ b/client/src/model-factory.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/model-offline.js b/client/src/model-offline.js index 318f02df35..e45eefd1fd 100644 --- a/client/src/model-offline.js +++ b/client/src/model-offline.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/model.js b/client/src/model.js index 7c80acceff..e796b0dd7d 100644 --- a/client/src/model.js +++ b/client/src/model.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/models/email.js b/client/src/models/email.js index a440fbddba..4cb567f7d6 100644 --- a/client/src/models/email.js +++ b/client/src/models/email.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/models/preferences.js b/client/src/models/preferences.js index 246a1c4c5a..8c42f78c58 100644 --- a/client/src/models/preferences.js +++ b/client/src/models/preferences.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/models/settings.js b/client/src/models/settings.js index e4a9bd0dd8..0dbae63a64 100644 --- a/client/src/models/settings.js +++ b/client/src/models/settings.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/models/user.js b/client/src/models/user.js index 6b7f8c8bb0..fa316dc279 100644 --- a/client/src/models/user.js +++ b/client/src/models/user.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/multi-collection.js b/client/src/multi-collection.js index fa1bd0ee34..fe4b7f4c7b 100644 --- a/client/src/multi-collection.js +++ b/client/src/multi-collection.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/namespace.js b/client/src/namespace.js index 6f3725b0d7..43c9496b31 100644 --- a/client/src/namespace.js +++ b/client/src/namespace.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/pre-loader.js b/client/src/pre-loader.js index e683ed397e..c6628ec583 100644 --- a/client/src/pre-loader.js +++ b/client/src/pre-loader.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/router.js b/client/src/router.js index b52b312fdf..6949d41986 100644 --- a/client/src/router.js +++ b/client/src/router.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/search-manager.js b/client/src/search-manager.js index d22c9b61f2..182fb39c3a 100644 --- a/client/src/search-manager.js +++ b/client/src/search-manager.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/storage.js b/client/src/storage.js index edeb4922ff..03b99fdf66 100644 --- a/client/src/storage.js +++ b/client/src/storage.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/theme-manager.js b/client/src/theme-manager.js index 7a3076a668..828fad6bab 100644 --- a/client/src/theme-manager.js +++ b/client/src/theme-manager.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/ui.js b/client/src/ui.js index 970f725881..55f0042c35 100644 --- a/client/src/ui.js +++ b/client/src/ui.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/utils.js b/client/src/utils.js index 0cbbc23171..957b4b811e 100644 --- a/client/src/utils.js +++ b/client/src/utils.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/view-helper.js b/client/src/view-helper.js index 1d47d4cfb4..03e6c36dc0 100644 --- a/client/src/view-helper.js +++ b/client/src/view-helper.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/view-record-helper.js b/client/src/view-record-helper.js index b89b564957..5517e8e02c 100644 --- a/client/src/view-record-helper.js +++ b/client/src/view-record-helper.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/view.js b/client/src/view.js index 7371f12fe6..2b943d6b38 100644 --- a/client/src/view.js +++ b/client/src/view.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/about.js b/client/src/views/about.js index 324ec2b02e..428bec9103 100644 --- a/client/src/views/about.js +++ b/client/src/views/about.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/auth-token/list.js b/client/src/views/admin/auth-token/list.js index 5d8ef68b4f..96e957f73a 100644 --- a/client/src/views/admin/auth-token/list.js +++ b/client/src/views/admin/auth-token/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/auth-token/record/list.js b/client/src/views/admin/auth-token/record/list.js index 60bcd0deac..185b7ff3d6 100644 --- a/client/src/views/admin/auth-token/record/list.js +++ b/client/src/views/admin/auth-token/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/authentication.js b/client/src/views/admin/authentication.js index fa06a39bab..b759837f46 100644 --- a/client/src/views/admin/authentication.js +++ b/client/src/views/admin/authentication.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/authentication/fields/test-connection.js b/client/src/views/admin/authentication/fields/test-connection.js index 993b124a53..d76aae8406 100644 --- a/client/src/views/admin/authentication/fields/test-connection.js +++ b/client/src/views/admin/authentication/fields/test-connection.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/currency.js b/client/src/views/admin/currency.js index 577e273a20..fcd7303491 100644 --- a/client/src/views/admin/currency.js +++ b/client/src/views/admin/currency.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/group-base.js b/client/src/views/admin/dynamic-logic/conditions-string/group-base.js index dedb8a7165..494b112fdf 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/group-base.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/group-base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/group-not.js b/client/src/views/admin/dynamic-logic/conditions-string/group-not.js index c1ccbd6f19..7f14f140f2 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/group-not.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/group-not.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-base.js b/client/src/views/admin/dynamic-logic/conditions-string/item-base.js index 5abc7795b2..447c23217b 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-base.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-in-future.js b/client/src/views/admin/dynamic-logic/conditions-string/item-in-future.js index 57845e0237..99a971bb59 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-in-future.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-in-future.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-in-past.js b/client/src/views/admin/dynamic-logic/conditions-string/item-in-past.js index a2ecc2e9e7..efb292d976 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-in-past.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-in-past.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-is-today.js b/client/src/views/admin/dynamic-logic/conditions-string/item-is-today.js index 7e1efde545..55c4604ed2 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-is-today.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-is-today.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-multiple-values-base.js b/client/src/views/admin/dynamic-logic/conditions-string/item-multiple-values-base.js index c927affc70..b955effad0 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-multiple-values-base.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-multiple-values-base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-base.js b/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-base.js index cdaaf5568d..42275d4119 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-base.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-date.js b/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-date.js index eaf84db73d..cc74d6c603 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-date.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-operator-only-date.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions-string/item-value-link.js b/client/src/views/admin/dynamic-logic/conditions-string/item-value-link.js index 6cc3798afb..1ccfab047f 100644 --- a/client/src/views/admin/dynamic-logic/conditions-string/item-value-link.js +++ b/client/src/views/admin/dynamic-logic/conditions-string/item-value-link.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/and.js b/client/src/views/admin/dynamic-logic/conditions/and.js index 6711bbd7ae..d6b2d3188d 100644 --- a/client/src/views/admin/dynamic-logic/conditions/and.js +++ b/client/src/views/admin/dynamic-logic/conditions/and.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/field-types/base.js b/client/src/views/admin/dynamic-logic/conditions/field-types/base.js index fce65509ce..2c37183d51 100644 --- a/client/src/views/admin/dynamic-logic/conditions/field-types/base.js +++ b/client/src/views/admin/dynamic-logic/conditions/field-types/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/field-types/date.js b/client/src/views/admin/dynamic-logic/conditions/field-types/date.js index 0cb4f359b0..c2757e29e5 100644 --- a/client/src/views/admin/dynamic-logic/conditions/field-types/date.js +++ b/client/src/views/admin/dynamic-logic/conditions/field-types/date.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/field-types/enum.js b/client/src/views/admin/dynamic-logic/conditions/field-types/enum.js index 4f763d302f..470d51686b 100644 --- a/client/src/views/admin/dynamic-logic/conditions/field-types/enum.js +++ b/client/src/views/admin/dynamic-logic/conditions/field-types/enum.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/field-types/link-multiple.js b/client/src/views/admin/dynamic-logic/conditions/field-types/link-multiple.js index 2d15d115c7..162ac10fd2 100644 --- a/client/src/views/admin/dynamic-logic/conditions/field-types/link-multiple.js +++ b/client/src/views/admin/dynamic-logic/conditions/field-types/link-multiple.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/field-types/link-parent.js b/client/src/views/admin/dynamic-logic/conditions/field-types/link-parent.js index f64d18412b..fecef44471 100644 --- a/client/src/views/admin/dynamic-logic/conditions/field-types/link-parent.js +++ b/client/src/views/admin/dynamic-logic/conditions/field-types/link-parent.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/field-types/link.js b/client/src/views/admin/dynamic-logic/conditions/field-types/link.js index 671e829781..a7c731c28d 100644 --- a/client/src/views/admin/dynamic-logic/conditions/field-types/link.js +++ b/client/src/views/admin/dynamic-logic/conditions/field-types/link.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/group-base.js b/client/src/views/admin/dynamic-logic/conditions/group-base.js index fbd083cc90..25ad9f419c 100644 --- a/client/src/views/admin/dynamic-logic/conditions/group-base.js +++ b/client/src/views/admin/dynamic-logic/conditions/group-base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/not.js b/client/src/views/admin/dynamic-logic/conditions/not.js index 12db67ee65..53d74d26c6 100644 --- a/client/src/views/admin/dynamic-logic/conditions/not.js +++ b/client/src/views/admin/dynamic-logic/conditions/not.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/conditions/or.js b/client/src/views/admin/dynamic-logic/conditions/or.js index 99238e493d..bd979416ff 100644 --- a/client/src/views/admin/dynamic-logic/conditions/or.js +++ b/client/src/views/admin/dynamic-logic/conditions/or.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/fields/field.js b/client/src/views/admin/dynamic-logic/fields/field.js index 5ba09e3be7..bc48931917 100644 --- a/client/src/views/admin/dynamic-logic/fields/field.js +++ b/client/src/views/admin/dynamic-logic/fields/field.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/modals/add-field.js b/client/src/views/admin/dynamic-logic/modals/add-field.js index b539b29cf4..d53933fef5 100644 --- a/client/src/views/admin/dynamic-logic/modals/add-field.js +++ b/client/src/views/admin/dynamic-logic/modals/add-field.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/dynamic-logic/modals/edit.js b/client/src/views/admin/dynamic-logic/modals/edit.js index 48c87c28ed..876ee8a224 100644 --- a/client/src/views/admin/dynamic-logic/modals/edit.js +++ b/client/src/views/admin/dynamic-logic/modals/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/entity-manager/index.js b/client/src/views/admin/entity-manager/index.js index 2733923e2f..25cc7f1ac1 100644 --- a/client/src/views/admin/entity-manager/index.js +++ b/client/src/views/admin/entity-manager/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/entity-manager/modals/edit-entity.js b/client/src/views/admin/entity-manager/modals/edit-entity.js index 03d0bdb7f7..ee9c1d7505 100644 --- a/client/src/views/admin/entity-manager/modals/edit-entity.js +++ b/client/src/views/admin/entity-manager/modals/edit-entity.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/entity-manager/modals/edit-formula.js b/client/src/views/admin/entity-manager/modals/edit-formula.js index 45a486b855..af75c2a124 100644 --- a/client/src/views/admin/entity-manager/modals/edit-formula.js +++ b/client/src/views/admin/entity-manager/modals/edit-formula.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/entity-manager/record/edit-formula.js b/client/src/views/admin/entity-manager/record/edit-formula.js index 33270a237d..135b2571ca 100644 --- a/client/src/views/admin/entity-manager/record/edit-formula.js +++ b/client/src/views/admin/entity-manager/record/edit-formula.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/extensions/done.js b/client/src/views/admin/extensions/done.js index 4603689a87..1a33260c33 100644 --- a/client/src/views/admin/extensions/done.js +++ b/client/src/views/admin/extensions/done.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/extensions/index.js b/client/src/views/admin/extensions/index.js index 11c92dc23e..1a7c7e9e16 100644 --- a/client/src/views/admin/extensions/index.js +++ b/client/src/views/admin/extensions/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/extensions/ready.js b/client/src/views/admin/extensions/ready.js index 02c2dd781c..97c5a55a5a 100644 --- a/client/src/views/admin/extensions/ready.js +++ b/client/src/views/admin/extensions/ready.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/edit.js b/client/src/views/admin/field-manager/edit.js index 1339f0e59e..67368b10fe 100644 --- a/client/src/views/admin/field-manager/edit.js +++ b/client/src/views/admin/field-manager/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/date/default.js b/client/src/views/admin/field-manager/fields/date/default.js index cac99ced1e..46bfe303bf 100644 --- a/client/src/views/admin/field-manager/fields/date/default.js +++ b/client/src/views/admin/field-manager/fields/date/default.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/dynamic-logic-conditions.js b/client/src/views/admin/field-manager/fields/dynamic-logic-conditions.js index 3cf7cd2a64..4538d7c1a5 100644 --- a/client/src/views/admin/field-manager/fields/dynamic-logic-conditions.js +++ b/client/src/views/admin/field-manager/fields/dynamic-logic-conditions.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/dynamic-logic-options.js b/client/src/views/admin/field-manager/fields/dynamic-logic-options.js index d193759193..7d0d13f4d8 100644 --- a/client/src/views/admin/field-manager/fields/dynamic-logic-options.js +++ b/client/src/views/admin/field-manager/fields/dynamic-logic-options.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/entity-list.js b/client/src/views/admin/field-manager/fields/entity-list.js index 1e955f8e5d..d5ce14deee 100644 --- a/client/src/views/admin/field-manager/fields/entity-list.js +++ b/client/src/views/admin/field-manager/fields/entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/foreign/field.js b/client/src/views/admin/field-manager/fields/foreign/field.js index 845d8547af..bb3d481b64 100644 --- a/client/src/views/admin/field-manager/fields/foreign/field.js +++ b/client/src/views/admin/field-manager/fields/foreign/field.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/foreign/link.js b/client/src/views/admin/field-manager/fields/foreign/link.js index 76a88ea7c4..6922df9a8d 100644 --- a/client/src/views/admin/field-manager/fields/foreign/link.js +++ b/client/src/views/admin/field-manager/fields/foreign/link.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/options.js b/client/src/views/admin/field-manager/fields/options.js index 2f8b45ee08..85337ecbbd 100644 --- a/client/src/views/admin/field-manager/fields/options.js +++ b/client/src/views/admin/field-manager/fields/options.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/options/default.js b/client/src/views/admin/field-manager/fields/options/default.js index 34bde761ad..f541537092 100644 --- a/client/src/views/admin/field-manager/fields/options/default.js +++ b/client/src/views/admin/field-manager/fields/options/default.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/fields/source-list.js b/client/src/views/admin/field-manager/fields/source-list.js index f041ab758e..55d25f5c94 100644 --- a/client/src/views/admin/field-manager/fields/source-list.js +++ b/client/src/views/admin/field-manager/fields/source-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/index.js b/client/src/views/admin/field-manager/index.js index 4e9bbd2248..0c6a7930db 100644 --- a/client/src/views/admin/field-manager/index.js +++ b/client/src/views/admin/field-manager/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/field-manager/list.js b/client/src/views/admin/field-manager/list.js index 08910228e8..52d20f30f6 100644 --- a/client/src/views/admin/field-manager/list.js +++ b/client/src/views/admin/field-manager/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/formula/fields/attribute.js b/client/src/views/admin/formula/fields/attribute.js index 0fe571ac0c..5bc75c6c87 100644 --- a/client/src/views/admin/formula/fields/attribute.js +++ b/client/src/views/admin/formula/fields/attribute.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/formula/modals/add-attribute.js b/client/src/views/admin/formula/modals/add-attribute.js index d8a4df42d1..e4d9350b84 100644 --- a/client/src/views/admin/formula/modals/add-attribute.js +++ b/client/src/views/admin/formula/modals/add-attribute.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/formula/modals/add-function.js b/client/src/views/admin/formula/modals/add-function.js index 995826bf88..2046d467df 100644 --- a/client/src/views/admin/formula/modals/add-function.js +++ b/client/src/views/admin/formula/modals/add-function.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/inbound-emails.js b/client/src/views/admin/inbound-emails.js index ad1b8912d0..6601f97bae 100644 --- a/client/src/views/admin/inbound-emails.js +++ b/client/src/views/admin/inbound-emails.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/index.js b/client/src/views/admin/index.js index 866f76b0f8..efd3102add 100644 --- a/client/src/views/admin/index.js +++ b/client/src/views/admin/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/integrations/edit.js b/client/src/views/admin/integrations/edit.js index 46df751e3b..b6594f89c0 100644 --- a/client/src/views/admin/integrations/edit.js +++ b/client/src/views/admin/integrations/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/integrations/google-maps.js b/client/src/views/admin/integrations/google-maps.js index a626b4992e..ea3a7f5c43 100644 --- a/client/src/views/admin/integrations/google-maps.js +++ b/client/src/views/admin/integrations/google-maps.js @@ -1,4 +1,30 @@ -/**LICENSE**/ +/************************************************************************ + * This file is part of EspoCRM. + * + * EspoCRM - Open Source CRM application. + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Website: http://www.espocrm.com + * + * EspoCRM is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * EspoCRM is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with EspoCRM. If not, see http://www.gnu.org/licenses/. + * + * The interactive user interfaces in modified source and object code versions + * of this program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU General Public License version 3. + * + * In accordance with Section 7(b) of the GNU General Public License version 3, + * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. + ************************************************************************/ Espo.define('views/admin/integrations/google-maps', 'views/admin/integrations/edit', function (Dep) { diff --git a/client/src/views/admin/integrations/index.js b/client/src/views/admin/integrations/index.js index da962ed4d8..4d0a4c73ce 100644 --- a/client/src/views/admin/integrations/index.js +++ b/client/src/views/admin/integrations/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/integrations/oauth2.js b/client/src/views/admin/integrations/oauth2.js index 3ab0a373b5..067f1e0bff 100644 --- a/client/src/views/admin/integrations/oauth2.js +++ b/client/src/views/admin/integrations/oauth2.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/job/fields/name.js b/client/src/views/admin/job/fields/name.js index 1a98d1d69d..48fb667388 100644 --- a/client/src/views/admin/job/fields/name.js +++ b/client/src/views/admin/job/fields/name.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/job/list.js b/client/src/views/admin/job/list.js index 2bf3f3c7b3..90e44f2584 100644 --- a/client/src/views/admin/job/list.js +++ b/client/src/views/admin/job/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/job/modals/detail.js b/client/src/views/admin/job/modals/detail.js index d648697b5f..ff14bacf30 100644 --- a/client/src/views/admin/job/modals/detail.js +++ b/client/src/views/admin/job/modals/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/job/record/detail-small.js b/client/src/views/admin/job/record/detail-small.js index 6df099889d..7d20c43769 100644 --- a/client/src/views/admin/job/record/detail-small.js +++ b/client/src/views/admin/job/record/detail-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/job/record/list.js b/client/src/views/admin/job/record/list.js index aa14bfe04a..0afea4b1ba 100644 --- a/client/src/views/admin/job/record/list.js +++ b/client/src/views/admin/job/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/base.js b/client/src/views/admin/layouts/base.js index 8d0a3e1016..2a84cf2c1c 100644 --- a/client/src/views/admin/layouts/base.js +++ b/client/src/views/admin/layouts/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/detail-convert.js b/client/src/views/admin/layouts/detail-convert.js index 87b25a1682..847a6cb1c5 100644 --- a/client/src/views/admin/layouts/detail-convert.js +++ b/client/src/views/admin/layouts/detail-convert.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/detail-small.js b/client/src/views/admin/layouts/detail-small.js index 182650124d..64c579c88d 100644 --- a/client/src/views/admin/layouts/detail-small.js +++ b/client/src/views/admin/layouts/detail-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/detail.js b/client/src/views/admin/layouts/detail.js index 732408d36b..8721b0ffdf 100644 --- a/client/src/views/admin/layouts/detail.js +++ b/client/src/views/admin/layouts/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/filters.js b/client/src/views/admin/layouts/filters.js index 3fc0e035a9..3c831cd191 100644 --- a/client/src/views/admin/layouts/filters.js +++ b/client/src/views/admin/layouts/filters.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/grid.js b/client/src/views/admin/layouts/grid.js index 152138855f..6776020695 100644 --- a/client/src/views/admin/layouts/grid.js +++ b/client/src/views/admin/layouts/grid.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/index.js b/client/src/views/admin/layouts/index.js index 12edc68784..3a75d49855 100644 --- a/client/src/views/admin/layouts/index.js +++ b/client/src/views/admin/layouts/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/list-small.js b/client/src/views/admin/layouts/list-small.js index c63fc6a9f0..f61b015b86 100644 --- a/client/src/views/admin/layouts/list-small.js +++ b/client/src/views/admin/layouts/list-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/list.js b/client/src/views/admin/layouts/list.js index d78a1586a8..63f8c5fd82 100644 --- a/client/src/views/admin/layouts/list.js +++ b/client/src/views/admin/layouts/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/mass-update.js b/client/src/views/admin/layouts/mass-update.js index 68288127f5..c4f36fe50b 100644 --- a/client/src/views/admin/layouts/mass-update.js +++ b/client/src/views/admin/layouts/mass-update.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/modals/edit-attributes.js b/client/src/views/admin/layouts/modals/edit-attributes.js index 3f9c512abb..492f485125 100644 --- a/client/src/views/admin/layouts/modals/edit-attributes.js +++ b/client/src/views/admin/layouts/modals/edit-attributes.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/modals/panel-attributes.js b/client/src/views/admin/layouts/modals/panel-attributes.js index e6c19289c9..c4967cb23c 100644 --- a/client/src/views/admin/layouts/modals/panel-attributes.js +++ b/client/src/views/admin/layouts/modals/panel-attributes.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/record/edit-attributes.js b/client/src/views/admin/layouts/record/edit-attributes.js index edf72f9038..fc5f0e4691 100644 --- a/client/src/views/admin/layouts/record/edit-attributes.js +++ b/client/src/views/admin/layouts/record/edit-attributes.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/relationships.js b/client/src/views/admin/layouts/relationships.js index e60d0e2d45..25664e29a1 100644 --- a/client/src/views/admin/layouts/relationships.js +++ b/client/src/views/admin/layouts/relationships.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/rows.js b/client/src/views/admin/layouts/rows.js index a2a38b038e..ed34323378 100644 --- a/client/src/views/admin/layouts/rows.js +++ b/client/src/views/admin/layouts/rows.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/side-panels-detail-small.js b/client/src/views/admin/layouts/side-panels-detail-small.js index e4da6cc685..dfb6f95c57 100644 --- a/client/src/views/admin/layouts/side-panels-detail-small.js +++ b/client/src/views/admin/layouts/side-panels-detail-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/side-panels-detail.js b/client/src/views/admin/layouts/side-panels-detail.js index 625742aa51..ae9c323cc6 100644 --- a/client/src/views/admin/layouts/side-panels-detail.js +++ b/client/src/views/admin/layouts/side-panels-detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/side-panels-edit-small.js b/client/src/views/admin/layouts/side-panels-edit-small.js index e9daf1296d..7cbe011118 100644 --- a/client/src/views/admin/layouts/side-panels-edit-small.js +++ b/client/src/views/admin/layouts/side-panels-edit-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/layouts/side-panels-edit.js b/client/src/views/admin/layouts/side-panels-edit.js index fe9cb445d8..d37cd9a2ab 100644 --- a/client/src/views/admin/layouts/side-panels-edit.js +++ b/client/src/views/admin/layouts/side-panels-edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/link-manager/index.js b/client/src/views/admin/link-manager/index.js index eea16577dd..394cac7fc7 100644 --- a/client/src/views/admin/link-manager/index.js +++ b/client/src/views/admin/link-manager/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/link-manager/modals/edit.js b/client/src/views/admin/link-manager/modals/edit.js index f9af8d2238..02151234b0 100644 --- a/client/src/views/admin/link-manager/modals/edit.js +++ b/client/src/views/admin/link-manager/modals/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/notifications.js b/client/src/views/admin/notifications.js index ad3b48a09b..bfb683d207 100644 --- a/client/src/views/admin/notifications.js +++ b/client/src/views/admin/notifications.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/outbound-emails.js b/client/src/views/admin/outbound-emails.js index bca39a6aeb..2ef45ae382 100644 --- a/client/src/views/admin/outbound-emails.js +++ b/client/src/views/admin/outbound-emails.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/settings.js b/client/src/views/admin/settings.js index d0824cf1c0..46391b2a6e 100644 --- a/client/src/views/admin/settings.js +++ b/client/src/views/admin/settings.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/upgrade/done.js b/client/src/views/admin/upgrade/done.js index 1d3bd6f1df..873bbe310a 100644 --- a/client/src/views/admin/upgrade/done.js +++ b/client/src/views/admin/upgrade/done.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/upgrade/index.js b/client/src/views/admin/upgrade/index.js index f0acc523e7..dd3ec4f6b2 100644 --- a/client/src/views/admin/upgrade/index.js +++ b/client/src/views/admin/upgrade/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/upgrade/ready.js b/client/src/views/admin/upgrade/ready.js index b258de9558..8ff9f2cef8 100644 --- a/client/src/views/admin/upgrade/ready.js +++ b/client/src/views/admin/upgrade/ready.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/admin/user-interface.js b/client/src/views/admin/user-interface.js index 5a8a8fff76..9396dbbeda 100644 --- a/client/src/views/admin/user-interface.js +++ b/client/src/views/admin/user-interface.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/base.js b/client/src/views/base.js index d5fa6d0e62..872b2801c5 100644 --- a/client/src/views/base.js +++ b/client/src/views/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashboard.js b/client/src/views/dashboard.js index f8efdf1cf8..261a66f62c 100644 --- a/client/src/views/dashboard.js +++ b/client/src/views/dashboard.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashlet.js b/client/src/views/dashlet.js index 50015a8cc3..2f03a63700 100644 --- a/client/src/views/dashlet.js +++ b/client/src/views/dashlet.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashlets/abstract/base.js b/client/src/views/dashlets/abstract/base.js index 054d63b966..32749b98ec 100644 --- a/client/src/views/dashlets/abstract/base.js +++ b/client/src/views/dashlets/abstract/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashlets/abstract/record-list.js b/client/src/views/dashlets/abstract/record-list.js index c0c399e2f7..6e410986d6 100644 --- a/client/src/views/dashlets/abstract/record-list.js +++ b/client/src/views/dashlets/abstract/record-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashlets/emails.js b/client/src/views/dashlets/emails.js index 1d587a2af9..4890695679 100644 --- a/client/src/views/dashlets/emails.js +++ b/client/src/views/dashlets/emails.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashlets/options/base.js b/client/src/views/dashlets/options/base.js index c4762485aa..aa48711215 100644 --- a/client/src/views/dashlets/options/base.js +++ b/client/src/views/dashlets/options/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/dashlets/stream.js b/client/src/views/dashlets/stream.js index 9f75ef2811..e0b1050b7b 100644 --- a/client/src/views/dashlets/stream.js +++ b/client/src/views/dashlets/stream.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/detail.js b/client/src/views/detail.js index 97c1788d53..d95b543774 100644 --- a/client/src/views/detail.js +++ b/client/src/views/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/edit.js b/client/src/views/edit.js index 3ef7c295f8..c7fc912f03 100644 --- a/client/src/views/edit.js +++ b/client/src/views/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/fields/email-address.js b/client/src/views/email-account/fields/email-address.js index 4ebd7e5587..758b8c0ccb 100644 --- a/client/src/views/email-account/fields/email-address.js +++ b/client/src/views/email-account/fields/email-address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/fields/email-folder.js b/client/src/views/email-account/fields/email-folder.js index eae93fe1bf..2e09eddb2d 100644 --- a/client/src/views/email-account/fields/email-folder.js +++ b/client/src/views/email-account/fields/email-folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/fields/folder.js b/client/src/views/email-account/fields/folder.js index 476797f81c..ae4762fe90 100644 --- a/client/src/views/email-account/fields/folder.js +++ b/client/src/views/email-account/fields/folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/fields/folders.js b/client/src/views/email-account/fields/folders.js index ffe334001d..d43ecee646 100644 --- a/client/src/views/email-account/fields/folders.js +++ b/client/src/views/email-account/fields/folders.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/fields/test-connection.js b/client/src/views/email-account/fields/test-connection.js index 9e426436c5..ac651c63d8 100644 --- a/client/src/views/email-account/fields/test-connection.js +++ b/client/src/views/email-account/fields/test-connection.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/fields/test-send.js b/client/src/views/email-account/fields/test-send.js index 94df45e113..e88552c017 100644 --- a/client/src/views/email-account/fields/test-send.js +++ b/client/src/views/email-account/fields/test-send.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/list.js b/client/src/views/email-account/list.js index c4d610fa26..3c4f580dcc 100644 --- a/client/src/views/email-account/list.js +++ b/client/src/views/email-account/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/modals/select-folder.js b/client/src/views/email-account/modals/select-folder.js index 3debda0872..45d06283a3 100644 --- a/client/src/views/email-account/modals/select-folder.js +++ b/client/src/views/email-account/modals/select-folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/record/detail.js b/client/src/views/email-account/record/detail.js index e98b5a49b2..7959a54367 100644 --- a/client/src/views/email-account/record/detail.js +++ b/client/src/views/email-account/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/record/edit.js b/client/src/views/email-account/record/edit.js index 8711518c49..0618c1f91f 100644 --- a/client/src/views/email-account/record/edit.js +++ b/client/src/views/email-account/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-account/record/list.js b/client/src/views/email-account/record/list.js index 076f014785..d4d80b15e5 100644 --- a/client/src/views/email-account/record/list.js +++ b/client/src/views/email-account/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/fields/action.js b/client/src/views/email-filter/fields/action.js index 44bf1e5075..2b386b6916 100644 --- a/client/src/views/email-filter/fields/action.js +++ b/client/src/views/email-filter/fields/action.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/fields/email-folder.js b/client/src/views/email-filter/fields/email-folder.js index 5c83f2c93d..2a994c4f7f 100644 --- a/client/src/views/email-filter/fields/email-folder.js +++ b/client/src/views/email-filter/fields/email-folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/modals/edit.js b/client/src/views/email-filter/modals/edit.js index 3035767353..90d375d5c6 100644 --- a/client/src/views/email-filter/modals/edit.js +++ b/client/src/views/email-filter/modals/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/record/detail-small.js b/client/src/views/email-filter/record/detail-small.js index 2c3fbdf616..bc959a9784 100644 --- a/client/src/views/email-filter/record/detail-small.js +++ b/client/src/views/email-filter/record/detail-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/record/detail.js b/client/src/views/email-filter/record/detail.js index 4164072bf0..364a761bb8 100644 --- a/client/src/views/email-filter/record/detail.js +++ b/client/src/views/email-filter/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/record/edit-small.js b/client/src/views/email-filter/record/edit-small.js index 69a8b7a9fd..c77fabf19e 100644 --- a/client/src/views/email-filter/record/edit-small.js +++ b/client/src/views/email-filter/record/edit-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-filter/record/edit.js b/client/src/views/email-filter/record/edit.js index 916e054c4b..f69ad9af62 100644 --- a/client/src/views/email-filter/record/edit.js +++ b/client/src/views/email-filter/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-folder/list-side.js b/client/src/views/email-folder/list-side.js index 84f34f9869..04c8708b06 100644 --- a/client/src/views/email-folder/list-side.js +++ b/client/src/views/email-folder/list-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-folder/list.js b/client/src/views/email-folder/list.js index 0ba4fb506a..0a27b8b789 100644 --- a/client/src/views/email-folder/list.js +++ b/client/src/views/email-folder/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-folder/modals/select-folder.js b/client/src/views/email-folder/modals/select-folder.js index 8540fc8c21..39553b065f 100644 --- a/client/src/views/email-folder/modals/select-folder.js +++ b/client/src/views/email-folder/modals/select-folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-folder/record/list.js b/client/src/views/email-folder/record/list.js index e8847e8c43..cc36c52aa6 100644 --- a/client/src/views/email-folder/record/list.js +++ b/client/src/views/email-folder/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-folder/record/row-actions/default.js b/client/src/views/email-folder/record/row-actions/default.js index 10563acc1a..bac82d59c6 100644 --- a/client/src/views/email-folder/record/row-actions/default.js +++ b/client/src/views/email-folder/record/row-actions/default.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-template/fields/insert-field.js b/client/src/views/email-template/fields/insert-field.js index bf4120e3b7..92252068e7 100644 --- a/client/src/views/email-template/fields/insert-field.js +++ b/client/src/views/email-template/fields/insert-field.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-template/record/detail.js b/client/src/views/email-template/record/detail.js index c64e880b48..194f0abb1c 100644 --- a/client/src/views/email-template/record/detail.js +++ b/client/src/views/email-template/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-template/record/edit-quick.js b/client/src/views/email-template/record/edit-quick.js index 9acba9b5ae..e4855ecc3e 100644 --- a/client/src/views/email-template/record/edit-quick.js +++ b/client/src/views/email-template/record/edit-quick.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-template/record/edit.js b/client/src/views/email-template/record/edit.js index ef9d613b02..e21e3f2b27 100644 --- a/client/src/views/email-template/record/edit.js +++ b/client/src/views/email-template/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email-template/record/panels/information.js b/client/src/views/email-template/record/panels/information.js index 4fdad3a67d..a5edf78669 100644 --- a/client/src/views/email-template/record/panels/information.js +++ b/client/src/views/email-template/record/panels/information.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/detail.js b/client/src/views/email/detail.js index acb74e9746..b2c829374e 100644 --- a/client/src/views/email/detail.js +++ b/client/src/views/email/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/compose-from-address.js b/client/src/views/email/fields/compose-from-address.js index 5969a81d19..b4c468aabd 100644 --- a/client/src/views/email/fields/compose-from-address.js +++ b/client/src/views/email/fields/compose-from-address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/email-address-varchar.js b/client/src/views/email/fields/email-address-varchar.js index 06241d1e1d..6217ddf1b1 100644 --- a/client/src/views/email/fields/email-address-varchar.js +++ b/client/src/views/email/fields/email-address-varchar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/email-address.js b/client/src/views/email/fields/email-address.js index 0227e7927c..a7640b67b3 100644 --- a/client/src/views/email/fields/email-address.js +++ b/client/src/views/email/fields/email-address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/from-address-varchar.js b/client/src/views/email/fields/from-address-varchar.js index 6c02f12d20..6275d6cb98 100644 --- a/client/src/views/email/fields/from-address-varchar.js +++ b/client/src/views/email/fields/from-address-varchar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/from-email-address.js b/client/src/views/email/fields/from-email-address.js index 68c8a922f7..63c0e3d09d 100644 --- a/client/src/views/email/fields/from-email-address.js +++ b/client/src/views/email/fields/from-email-address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/icon.js b/client/src/views/email/fields/icon.js index 7f3a865cfa..f9d181c97a 100644 --- a/client/src/views/email/fields/icon.js +++ b/client/src/views/email/fields/icon.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/select-template.js b/client/src/views/email/fields/select-template.js index e1691b84fd..d4e082f507 100644 --- a/client/src/views/email/fields/select-template.js +++ b/client/src/views/email/fields/select-template.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/fields/subject.js b/client/src/views/email/fields/subject.js index 518287c144..d4834fd76c 100644 --- a/client/src/views/email/fields/subject.js +++ b/client/src/views/email/fields/subject.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/list.js b/client/src/views/email/list.js index 8c198d99a6..33d56b8ff4 100644 --- a/client/src/views/email/list.js +++ b/client/src/views/email/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/modals/body-plain.js b/client/src/views/email/modals/body-plain.js index f1d4986705..a38459fdb3 100644 --- a/client/src/views/email/modals/body-plain.js +++ b/client/src/views/email/modals/body-plain.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/modals/detail.js b/client/src/views/email/modals/detail.js index 76db642498..20a1d41a77 100644 --- a/client/src/views/email/modals/detail.js +++ b/client/src/views/email/modals/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/compose.js b/client/src/views/email/record/compose.js index d281c07097..4bec92d97a 100644 --- a/client/src/views/email/record/compose.js +++ b/client/src/views/email/record/compose.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/detail-quick.js b/client/src/views/email/record/detail-quick.js index 2fa479f65d..585876397d 100644 --- a/client/src/views/email/record/detail-quick.js +++ b/client/src/views/email/record/detail-quick.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/detail-side.js b/client/src/views/email/record/detail-side.js index 31f2bee22d..104c2e9c53 100644 --- a/client/src/views/email/record/detail-side.js +++ b/client/src/views/email/record/detail-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/detail.js b/client/src/views/email/record/detail.js index d17c367259..7e92719dd7 100644 --- a/client/src/views/email/record/detail.js +++ b/client/src/views/email/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/edit-quick.js b/client/src/views/email/record/edit-quick.js index 09fb7b9457..a0e19bca35 100644 --- a/client/src/views/email/record/edit-quick.js +++ b/client/src/views/email/record/edit-quick.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/edit.js b/client/src/views/email/record/edit.js index 0142f3a771..6c0b206631 100644 --- a/client/src/views/email/record/edit.js +++ b/client/src/views/email/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/list-expanded.js b/client/src/views/email/record/list-expanded.js index 93cb52e73a..4e307446f3 100644 --- a/client/src/views/email/record/list-expanded.js +++ b/client/src/views/email/record/list-expanded.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/list.js b/client/src/views/email/record/list.js index 134bff7b59..0635bd718c 100644 --- a/client/src/views/email/record/list.js +++ b/client/src/views/email/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/row-actions/dashlet.js b/client/src/views/email/record/row-actions/dashlet.js index ea23aedabd..5c0cc8e207 100644 --- a/client/src/views/email/record/row-actions/dashlet.js +++ b/client/src/views/email/record/row-actions/dashlet.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/email/record/row-actions/default.js b/client/src/views/email/record/row-actions/default.js index d59029aa70..190e7d10dc 100644 --- a/client/src/views/email/record/row-actions/default.js +++ b/client/src/views/email/record/row-actions/default.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/export/modals/export.js b/client/src/views/export/modals/export.js index bb9524ca2b..ea59728f0a 100644 --- a/client/src/views/export/modals/export.js +++ b/client/src/views/export/modals/export.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/export/record/record.js b/client/src/views/export/record/record.js index 5880153bfd..9b19717295 100644 --- a/client/src/views/export/record/record.js +++ b/client/src/views/export/record/record.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/extension/record/list.js b/client/src/views/extension/record/list.js index a3e830746a..e3021af8a1 100644 --- a/client/src/views/extension/record/list.js +++ b/client/src/views/extension/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/extension/record/row-actions.js b/client/src/views/extension/record/row-actions.js index 4077523d84..917d1d10c3 100644 --- a/client/src/views/extension/record/row-actions.js +++ b/client/src/views/extension/record/row-actions.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/external-account/index.js b/client/src/views/external-account/index.js index 371d78dc7e..dfd637b16e 100644 --- a/client/src/views/external-account/index.js +++ b/client/src/views/external-account/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/external-account/oauth2.js b/client/src/views/external-account/oauth2.js index fa781c34bc..51bc7812a0 100644 --- a/client/src/views/external-account/oauth2.js +++ b/client/src/views/external-account/oauth2.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/address.js b/client/src/views/fields/address.js index 66e2b79411..d56b4cbc5e 100644 --- a/client/src/views/fields/address.js +++ b/client/src/views/fields/address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/array-int.js b/client/src/views/fields/array-int.js index acbd563fb9..08d410a013 100644 --- a/client/src/views/fields/array-int.js +++ b/client/src/views/fields/array-int.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/array.js b/client/src/views/fields/array.js index bc6ef85a1e..04a34e5e39 100644 --- a/client/src/views/fields/array.js +++ b/client/src/views/fields/array.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/assigned-user.js b/client/src/views/fields/assigned-user.js index c6d50c413a..dc9f41bece 100644 --- a/client/src/views/fields/assigned-user.js +++ b/client/src/views/fields/assigned-user.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/assigned-users.js b/client/src/views/fields/assigned-users.js index 3d8eeb141d..3da8f1bcbd 100644 --- a/client/src/views/fields/assigned-users.js +++ b/client/src/views/fields/assigned-users.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/attachment-multiple.js b/client/src/views/fields/attachment-multiple.js index feaa823b7f..cc199dd4c0 100644 --- a/client/src/views/fields/attachment-multiple.js +++ b/client/src/views/fields/attachment-multiple.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/autoincrement.js b/client/src/views/fields/autoincrement.js index 93ae07709e..4f320b2482 100644 --- a/client/src/views/fields/autoincrement.js +++ b/client/src/views/fields/autoincrement.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/base.js b/client/src/views/fields/base.js index 665a6ff619..b79f249deb 100644 --- a/client/src/views/fields/base.js +++ b/client/src/views/fields/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/bool.js b/client/src/views/fields/bool.js index 879581734d..0993a84d8a 100644 --- a/client/src/views/fields/bool.js +++ b/client/src/views/fields/bool.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/currency-converted.js b/client/src/views/fields/currency-converted.js index 7fb73545b1..36def596af 100644 --- a/client/src/views/fields/currency-converted.js +++ b/client/src/views/fields/currency-converted.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/currency.js b/client/src/views/fields/currency.js index 69184facf1..239abc70d8 100644 --- a/client/src/views/fields/currency.js +++ b/client/src/views/fields/currency.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/date.js b/client/src/views/fields/date.js index 8700cecca5..dbce0c38af 100644 --- a/client/src/views/fields/date.js +++ b/client/src/views/fields/date.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/datetime-optional.js b/client/src/views/fields/datetime-optional.js index 1542cc4456..3d1c0ca304 100644 --- a/client/src/views/fields/datetime-optional.js +++ b/client/src/views/fields/datetime-optional.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/datetime-short.js b/client/src/views/fields/datetime-short.js index 218bf59d50..a2371b17f2 100644 --- a/client/src/views/fields/datetime-short.js +++ b/client/src/views/fields/datetime-short.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/datetime.js b/client/src/views/fields/datetime.js index a43f0c5610..c246a68dd7 100644 --- a/client/src/views/fields/datetime.js +++ b/client/src/views/fields/datetime.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/duration.js b/client/src/views/fields/duration.js index 1bb2dc2db1..90fa2cadd2 100644 --- a/client/src/views/fields/duration.js +++ b/client/src/views/fields/duration.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/email.js b/client/src/views/fields/email.js index 3f5ce8f711..64348ade5e 100644 --- a/client/src/views/fields/email.js +++ b/client/src/views/fields/email.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/entity-type-list.js b/client/src/views/fields/entity-type-list.js index 537af0fbcd..01ed29198a 100644 --- a/client/src/views/fields/entity-type-list.js +++ b/client/src/views/fields/entity-type-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/entity-type.js b/client/src/views/fields/entity-type.js index ee1b9a9283..00236711a4 100644 --- a/client/src/views/fields/entity-type.js +++ b/client/src/views/fields/entity-type.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/enum-float.js b/client/src/views/fields/enum-float.js index 0b8fa12d35..bcd6221953 100644 --- a/client/src/views/fields/enum-float.js +++ b/client/src/views/fields/enum-float.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/enum-int.js b/client/src/views/fields/enum-int.js index d05eddd41d..3ce4623815 100644 --- a/client/src/views/fields/enum-int.js +++ b/client/src/views/fields/enum-int.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/enum-styled.js b/client/src/views/fields/enum-styled.js index 2bfe91acc4..b7194df4ec 100644 --- a/client/src/views/fields/enum-styled.js +++ b/client/src/views/fields/enum-styled.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/enum.js b/client/src/views/fields/enum.js index 600223e35c..ed13dabf2e 100644 --- a/client/src/views/fields/enum.js +++ b/client/src/views/fields/enum.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/file.js b/client/src/views/fields/file.js index 6fcd751a7b..d7d8c2a360 100644 --- a/client/src/views/fields/file.js +++ b/client/src/views/fields/file.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/float.js b/client/src/views/fields/float.js index a894b6fc36..457d85f82a 100644 --- a/client/src/views/fields/float.js +++ b/client/src/views/fields/float.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/followers.js b/client/src/views/fields/followers.js index fa997642e9..2cace0f33d 100644 --- a/client/src/views/fields/followers.js +++ b/client/src/views/fields/followers.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/foreign-enum.js b/client/src/views/fields/foreign-enum.js index cdd1cc9096..8e71b5264d 100644 --- a/client/src/views/fields/foreign-enum.js +++ b/client/src/views/fields/foreign-enum.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/foreign-float.js b/client/src/views/fields/foreign-float.js index 97f403bb0c..17456a6c5c 100644 --- a/client/src/views/fields/foreign-float.js +++ b/client/src/views/fields/foreign-float.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/foreign-int.js b/client/src/views/fields/foreign-int.js index 0f856a3eff..be8b46c7f1 100644 --- a/client/src/views/fields/foreign-int.js +++ b/client/src/views/fields/foreign-int.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/foreign-varchar.js b/client/src/views/fields/foreign-varchar.js index 7bfbc4a7fe..1ba19f5355 100644 --- a/client/src/views/fields/foreign-varchar.js +++ b/client/src/views/fields/foreign-varchar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/foreign.js b/client/src/views/fields/foreign.js index 0833dfb8da..f88c70b8e9 100644 --- a/client/src/views/fields/foreign.js +++ b/client/src/views/fields/foreign.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/formula.js b/client/src/views/fields/formula.js index 4622112aea..b3079a4ecf 100644 --- a/client/src/views/fields/formula.js +++ b/client/src/views/fields/formula.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/image.js b/client/src/views/fields/image.js index fb6289de1a..46694ddf5d 100644 --- a/client/src/views/fields/image.js +++ b/client/src/views/fields/image.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/int.js b/client/src/views/fields/int.js index a51d6e8c6b..b00a6693b7 100644 --- a/client/src/views/fields/int.js +++ b/client/src/views/fields/int.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/json-object.js b/client/src/views/fields/json-object.js index 1529c77188..1b22b34871 100644 --- a/client/src/views/fields/json-object.js +++ b/client/src/views/fields/json-object.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-category-tree.js b/client/src/views/fields/link-category-tree.js index 602758158d..55b9cb6c44 100644 --- a/client/src/views/fields/link-category-tree.js +++ b/client/src/views/fields/link-category-tree.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-multiple-category-tree.js b/client/src/views/fields/link-multiple-category-tree.js index d2fcd7f063..c2e836b2e4 100644 --- a/client/src/views/fields/link-multiple-category-tree.js +++ b/client/src/views/fields/link-multiple-category-tree.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-multiple-with-primary.js b/client/src/views/fields/link-multiple-with-primary.js index 5ee0431daa..51f12bff40 100644 --- a/client/src/views/fields/link-multiple-with-primary.js +++ b/client/src/views/fields/link-multiple-with-primary.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-multiple-with-role.js b/client/src/views/fields/link-multiple-with-role.js index 045fa78ac7..664f6c31b2 100644 --- a/client/src/views/fields/link-multiple-with-role.js +++ b/client/src/views/fields/link-multiple-with-role.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-multiple.js b/client/src/views/fields/link-multiple.js index 99f8d22de7..f465273fbf 100644 --- a/client/src/views/fields/link-multiple.js +++ b/client/src/views/fields/link-multiple.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-one.js b/client/src/views/fields/link-one.js index 86cf4ee1c8..d3258ac0d5 100644 --- a/client/src/views/fields/link-one.js +++ b/client/src/views/fields/link-one.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link-parent.js b/client/src/views/fields/link-parent.js index 9bdb76ab11..ef92843645 100644 --- a/client/src/views/fields/link-parent.js +++ b/client/src/views/fields/link-parent.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/link.js b/client/src/views/fields/link.js index 6760bdbe96..1f11aa3854 100644 --- a/client/src/views/fields/link.js +++ b/client/src/views/fields/link.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/map.js b/client/src/views/fields/map.js index 085b712385..2538cead77 100644 --- a/client/src/views/fields/map.js +++ b/client/src/views/fields/map.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/multi-enum.js b/client/src/views/fields/multi-enum.js index 894fe43519..c411c6c67b 100644 --- a/client/src/views/fields/multi-enum.js +++ b/client/src/views/fields/multi-enum.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/number.js b/client/src/views/fields/number.js index fdb4d885e5..0d6d071154 100644 --- a/client/src/views/fields/number.js +++ b/client/src/views/fields/number.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/password.js b/client/src/views/fields/password.js index a3914a3758..8d583ee9b0 100644 --- a/client/src/views/fields/password.js +++ b/client/src/views/fields/password.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/person-name.js b/client/src/views/fields/person-name.js index 2b3dbd19e1..e8579c4eb9 100644 --- a/client/src/views/fields/person-name.js +++ b/client/src/views/fields/person-name.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/phone.js b/client/src/views/fields/phone.js index 6bb75320f7..0fc6d0bd99 100644 --- a/client/src/views/fields/phone.js +++ b/client/src/views/fields/phone.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/range-currency.js b/client/src/views/fields/range-currency.js index 398429a7cf..f043ccadaf 100644 --- a/client/src/views/fields/range-currency.js +++ b/client/src/views/fields/range-currency.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/range-float.js b/client/src/views/fields/range-float.js index b07ec10e01..6fe23c9bbe 100644 --- a/client/src/views/fields/range-float.js +++ b/client/src/views/fields/range-float.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/range-int.js b/client/src/views/fields/range-int.js index 2f2cfaa459..7b6fa6dd4e 100644 --- a/client/src/views/fields/range-int.js +++ b/client/src/views/fields/range-int.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/teams.js b/client/src/views/fields/teams.js index aa782e8660..18ade26bc6 100644 --- a/client/src/views/fields/teams.js +++ b/client/src/views/fields/teams.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/text.js b/client/src/views/fields/text.js index d4d0ca1aaf..a5e099982b 100644 --- a/client/src/views/fields/text.js +++ b/client/src/views/fields/text.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/url.js b/client/src/views/fields/url.js index dd9292a019..89138f3f38 100644 --- a/client/src/views/fields/url.js +++ b/client/src/views/fields/url.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/user-with-avatar.js b/client/src/views/fields/user-with-avatar.js index ac2c9a39bd..baaf9dda43 100644 --- a/client/src/views/fields/user-with-avatar.js +++ b/client/src/views/fields/user-with-avatar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/user.js b/client/src/views/fields/user.js index fe84e397e5..a08096057f 100644 --- a/client/src/views/fields/user.js +++ b/client/src/views/fields/user.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/users.js b/client/src/views/fields/users.js index c41c2225b0..d095ba900a 100644 --- a/client/src/views/fields/users.js +++ b/client/src/views/fields/users.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/varchar.js b/client/src/views/fields/varchar.js index 3342a7de91..1a152f743f 100644 --- a/client/src/views/fields/varchar.js +++ b/client/src/views/fields/varchar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/fields/wysiwyg.js b/client/src/views/fields/wysiwyg.js index 33074ed9b0..5a38dad50c 100644 --- a/client/src/views/fields/wysiwyg.js +++ b/client/src/views/fields/wysiwyg.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/global-search/global-search.js b/client/src/views/global-search/global-search.js index e475aeb751..b8dcc86513 100644 --- a/client/src/views/global-search/global-search.js +++ b/client/src/views/global-search/global-search.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/global-search/name-field.js b/client/src/views/global-search/name-field.js index 32a5064697..0625977762 100644 --- a/client/src/views/global-search/name-field.js +++ b/client/src/views/global-search/name-field.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/global-search/panel.js b/client/src/views/global-search/panel.js index e05631d9aa..1c265b7ec2 100644 --- a/client/src/views/global-search/panel.js +++ b/client/src/views/global-search/panel.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/global-search/scope-badge.js b/client/src/views/global-search/scope-badge.js index 980444887d..5bdc7cb24a 100644 --- a/client/src/views/global-search/scope-badge.js +++ b/client/src/views/global-search/scope-badge.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/header.js b/client/src/views/header.js index 14e10849b3..c4c63e0ec7 100644 --- a/client/src/views/header.js +++ b/client/src/views/header.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/home.js b/client/src/views/home.js index 134e9cecf3..7e675c5db5 100644 --- a/client/src/views/home.js +++ b/client/src/views/home.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/detail.js b/client/src/views/import/detail.js index 644338d8cc..eac02706e5 100644 --- a/client/src/views/import/detail.js +++ b/client/src/views/import/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/index.js b/client/src/views/import/index.js index 2ad3e36efb..600c5cd1cd 100644 --- a/client/src/views/import/index.js +++ b/client/src/views/import/index.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/list.js b/client/src/views/import/list.js index d694841751..bd7c342d10 100644 --- a/client/src/views/import/list.js +++ b/client/src/views/import/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/record/detail.js b/client/src/views/import/record/detail.js index 72ad7d3419..c6a3c30980 100644 --- a/client/src/views/import/record/detail.js +++ b/client/src/views/import/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/record/list.js b/client/src/views/import/record/list.js index e7e892b7f9..86667d371b 100644 --- a/client/src/views/import/record/list.js +++ b/client/src/views/import/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/record/panels/duplicates.js b/client/src/views/import/record/panels/duplicates.js index 67802481bf..1af09a2dac 100644 --- a/client/src/views/import/record/panels/duplicates.js +++ b/client/src/views/import/record/panels/duplicates.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/record/panels/imported.js b/client/src/views/import/record/panels/imported.js index 41ce9d0a2f..c69c140e78 100644 --- a/client/src/views/import/record/panels/imported.js +++ b/client/src/views/import/record/panels/imported.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/record/panels/updated.js b/client/src/views/import/record/panels/updated.js index 89760ef04b..2a667fc8e0 100644 --- a/client/src/views/import/record/panels/updated.js +++ b/client/src/views/import/record/panels/updated.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/record/row-actions/duplicates.js b/client/src/views/import/record/row-actions/duplicates.js index 5a5c7bc3d0..bc4f84ad2c 100644 --- a/client/src/views/import/record/row-actions/duplicates.js +++ b/client/src/views/import/record/row-actions/duplicates.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/step1.js b/client/src/views/import/step1.js index b97b383b6c..b188644e2e 100644 --- a/client/src/views/import/step1.js +++ b/client/src/views/import/step1.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/import/step2.js b/client/src/views/import/step2.js index cc5e9a8eb7..649eb5111d 100644 --- a/client/src/views/import/step2.js +++ b/client/src/views/import/step2.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/fields/email-address.js b/client/src/views/inbound-email/fields/email-address.js index 0be15b8108..a35d4d4172 100644 --- a/client/src/views/inbound-email/fields/email-address.js +++ b/client/src/views/inbound-email/fields/email-address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/fields/folder.js b/client/src/views/inbound-email/fields/folder.js index c04c5e540d..3f85cbdd22 100644 --- a/client/src/views/inbound-email/fields/folder.js +++ b/client/src/views/inbound-email/fields/folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/fields/folders.js b/client/src/views/inbound-email/fields/folders.js index a06820783b..02f5725f17 100644 --- a/client/src/views/inbound-email/fields/folders.js +++ b/client/src/views/inbound-email/fields/folders.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/fields/target-user-position.js b/client/src/views/inbound-email/fields/target-user-position.js index 6341920268..6dfa2dd63d 100644 --- a/client/src/views/inbound-email/fields/target-user-position.js +++ b/client/src/views/inbound-email/fields/target-user-position.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/fields/test-connection.js b/client/src/views/inbound-email/fields/test-connection.js index db255f47d3..a4ce439ae9 100644 --- a/client/src/views/inbound-email/fields/test-connection.js +++ b/client/src/views/inbound-email/fields/test-connection.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/modals/select-folder.js b/client/src/views/inbound-email/modals/select-folder.js index 2a1af4e92a..2cfc5e7e89 100644 --- a/client/src/views/inbound-email/modals/select-folder.js +++ b/client/src/views/inbound-email/modals/select-folder.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/record/detail.js b/client/src/views/inbound-email/record/detail.js index 22d31dc7d5..d882d00f3b 100644 --- a/client/src/views/inbound-email/record/detail.js +++ b/client/src/views/inbound-email/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/record/edit.js b/client/src/views/inbound-email/record/edit.js index 7c0ff352bc..008670cae9 100644 --- a/client/src/views/inbound-email/record/edit.js +++ b/client/src/views/inbound-email/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/inbound-email/record/list.js b/client/src/views/inbound-email/record/list.js index 02011f0335..a74cb24150 100644 --- a/client/src/views/inbound-email/record/list.js +++ b/client/src/views/inbound-email/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/list-tree.js b/client/src/views/list-tree.js index aeee6077d9..000f26592e 100644 --- a/client/src/views/list-tree.js +++ b/client/src/views/list-tree.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/list.js b/client/src/views/list.js index fa4f7ae52a..30f81a3dbb 100644 --- a/client/src/views/list.js +++ b/client/src/views/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/login.js b/client/src/views/login.js index bd58be15ed..1cd082aba4 100644 --- a/client/src/views/login.js +++ b/client/src/views/login.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/main.js b/client/src/views/main.js index 383d108be1..f03bb6031d 100644 --- a/client/src/views/main.js +++ b/client/src/views/main.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/merge.js b/client/src/views/merge.js index 15ea6b1523..6b0d3f68ab 100644 --- a/client/src/views/merge.js +++ b/client/src/views/merge.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modal.js b/client/src/views/modal.js index 3f712049b1..d960c9001f 100644 --- a/client/src/views/modal.js +++ b/client/src/views/modal.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/add-dashlet.js b/client/src/views/modals/add-dashlet.js index 5969a7f955..e1b022c185 100644 --- a/client/src/views/modals/add-dashlet.js +++ b/client/src/views/modals/add-dashlet.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/array-field-add.js b/client/src/views/modals/array-field-add.js index b9fdbd06e7..c80d2f47cc 100644 --- a/client/src/views/modals/array-field-add.js +++ b/client/src/views/modals/array-field-add.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/change-password.js b/client/src/views/modals/change-password.js index 5b63ac7af4..2d07b677db 100644 --- a/client/src/views/modals/change-password.js +++ b/client/src/views/modals/change-password.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/compose-email.js b/client/src/views/modals/compose-email.js index 33d303f558..02a1709229 100644 --- a/client/src/views/modals/compose-email.js +++ b/client/src/views/modals/compose-email.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/detail.js b/client/src/views/modals/detail.js index 5c9c38b267..d3e30b1a81 100644 --- a/client/src/views/modals/detail.js +++ b/client/src/views/modals/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/duplicate.js b/client/src/views/modals/duplicate.js index 91d6db211e..f59dc58e44 100644 --- a/client/src/views/modals/duplicate.js +++ b/client/src/views/modals/duplicate.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/edit-dashboard.js b/client/src/views/modals/edit-dashboard.js index 25d3bf4b95..22872f903a 100644 --- a/client/src/views/modals/edit-dashboard.js +++ b/client/src/views/modals/edit-dashboard.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/edit.js b/client/src/views/modals/edit.js index dc4a518eab..045586ba4b 100644 --- a/client/src/views/modals/edit.js +++ b/client/src/views/modals/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/image-crop.js b/client/src/views/modals/image-crop.js index ad18c57b87..eae7dbd13c 100644 --- a/client/src/views/modals/image-crop.js +++ b/client/src/views/modals/image-crop.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/image-preview.js b/client/src/views/modals/image-preview.js index 90f74a07ba..90c28c8b2e 100644 --- a/client/src/views/modals/image-preview.js +++ b/client/src/views/modals/image-preview.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/mass-update.js b/client/src/views/modals/mass-update.js index 06aa3f530e..e29ebbb72e 100644 --- a/client/src/views/modals/mass-update.js +++ b/client/src/views/modals/mass-update.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/password-change-request.js b/client/src/views/modals/password-change-request.js index 96e91262a5..40f9606d68 100644 --- a/client/src/views/modals/password-change-request.js +++ b/client/src/views/modals/password-change-request.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/save-filters.js b/client/src/views/modals/save-filters.js index 6291248980..c5c633adb4 100644 --- a/client/src/views/modals/save-filters.js +++ b/client/src/views/modals/save-filters.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/select-category-tree-records.js b/client/src/views/modals/select-category-tree-records.js index 32af94e73a..a323f67e81 100644 --- a/client/src/views/modals/select-category-tree-records.js +++ b/client/src/views/modals/select-category-tree-records.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/select-records.js b/client/src/views/modals/select-records.js index f2f3ca2556..fe95f4cab6 100644 --- a/client/src/views/modals/select-records.js +++ b/client/src/views/modals/select-records.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/modals/select-template.js b/client/src/views/modals/select-template.js index 25fae19c74..5e74a72f40 100644 --- a/client/src/views/modals/select-template.js +++ b/client/src/views/modals/select-template.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/note/fields/post.js b/client/src/views/note/fields/post.js index b25239b134..aa369f4d3d 100644 --- a/client/src/views/note/fields/post.js +++ b/client/src/views/note/fields/post.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/note/modals/edit.js b/client/src/views/note/modals/edit.js index 5fe3bc8e27..d90bedd6b2 100644 --- a/client/src/views/note/modals/edit.js +++ b/client/src/views/note/modals/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/note/record/edit.js b/client/src/views/note/record/edit.js index 4aa4987fba..6301063522 100644 --- a/client/src/views/note/record/edit.js +++ b/client/src/views/note/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/badge.js b/client/src/views/notification/badge.js index 81056b8690..667bc8edd6 100644 --- a/client/src/views/notification/badge.js +++ b/client/src/views/notification/badge.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/fields/container.js b/client/src/views/notification/fields/container.js index 5ba277486b..cbf4c9cf23 100644 --- a/client/src/views/notification/fields/container.js +++ b/client/src/views/notification/fields/container.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/fields/read-with-menu.js b/client/src/views/notification/fields/read-with-menu.js index a7778163ae..d6ea79b527 100644 --- a/client/src/views/notification/fields/read-with-menu.js +++ b/client/src/views/notification/fields/read-with-menu.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/fields/read.js b/client/src/views/notification/fields/read.js index 5b8ce4f8c1..5adf6d3720 100644 --- a/client/src/views/notification/fields/read.js +++ b/client/src/views/notification/fields/read.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/items/assign.js b/client/src/views/notification/items/assign.js index 686075e1d8..4263d4cc5f 100644 --- a/client/src/views/notification/items/assign.js +++ b/client/src/views/notification/items/assign.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/items/base.js b/client/src/views/notification/items/base.js index 0fd510f278..a4aa812381 100644 --- a/client/src/views/notification/items/base.js +++ b/client/src/views/notification/items/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/items/email-received.js b/client/src/views/notification/items/email-received.js index b2978a3ecc..e97778d184 100644 --- a/client/src/views/notification/items/email-received.js +++ b/client/src/views/notification/items/email-received.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/items/entity-removed.js b/client/src/views/notification/items/entity-removed.js index 53fd527f01..1055811d85 100644 --- a/client/src/views/notification/items/entity-removed.js +++ b/client/src/views/notification/items/entity-removed.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/items/message.js b/client/src/views/notification/items/message.js index 76a695edfe..06e7915607 100644 --- a/client/src/views/notification/items/message.js +++ b/client/src/views/notification/items/message.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/items/system.js b/client/src/views/notification/items/system.js index dfbc020d36..234f269fa9 100644 --- a/client/src/views/notification/items/system.js +++ b/client/src/views/notification/items/system.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/list.js b/client/src/views/notification/list.js index 4e49e1c6a9..6b98d53bff 100644 --- a/client/src/views/notification/list.js +++ b/client/src/views/notification/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/panel.js b/client/src/views/notification/panel.js index 646942a062..faf748d587 100644 --- a/client/src/views/notification/panel.js +++ b/client/src/views/notification/panel.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/notification/record/list.js b/client/src/views/notification/record/list.js index 593e822b9e..d2c5614b10 100644 --- a/client/src/views/notification/record/list.js +++ b/client/src/views/notification/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/outbound-email/fields/test-send.js b/client/src/views/outbound-email/fields/test-send.js index a068d6e4fa..462a07ced7 100644 --- a/client/src/views/outbound-email/fields/test-send.js +++ b/client/src/views/outbound-email/fields/test-send.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/outbound-email/modals/test-send.js b/client/src/views/outbound-email/modals/test-send.js index d4bc11fd98..efc6870648 100644 --- a/client/src/views/outbound-email/modals/test-send.js +++ b/client/src/views/outbound-email/modals/test-send.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/popup-notification.js b/client/src/views/popup-notification.js index 9c76939188..644815b50f 100644 --- a/client/src/views/popup-notification.js +++ b/client/src/views/popup-notification.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal-role/list.js b/client/src/views/portal-role/list.js index 940bf181b9..6e6080d777 100644 --- a/client/src/views/portal-role/list.js +++ b/client/src/views/portal-role/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal-role/record/detail.js b/client/src/views/portal-role/record/detail.js index 59e1b030ca..b4608ae9e6 100644 --- a/client/src/views/portal-role/record/detail.js +++ b/client/src/views/portal-role/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal-role/record/edit.js b/client/src/views/portal-role/record/edit.js index 9f2d210283..43fc1862a5 100644 --- a/client/src/views/portal-role/record/edit.js +++ b/client/src/views/portal-role/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal-role/record/list.js b/client/src/views/portal-role/record/list.js index e736800044..88788d2140 100644 --- a/client/src/views/portal-role/record/list.js +++ b/client/src/views/portal-role/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal-role/record/table.js b/client/src/views/portal-role/record/table.js index 3af29a2d60..1262b22e3b 100644 --- a/client/src/views/portal-role/record/table.js +++ b/client/src/views/portal-role/record/table.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal-user/list.js b/client/src/views/portal-user/list.js index a4a83257f5..6ccd19da09 100644 --- a/client/src/views/portal-user/list.js +++ b/client/src/views/portal-user/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal/fields/custom-id.js b/client/src/views/portal/fields/custom-id.js index 3e472d074a..ebc01e4b73 100644 --- a/client/src/views/portal/fields/custom-id.js +++ b/client/src/views/portal/fields/custom-id.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal/fields/quick-create-list.js b/client/src/views/portal/fields/quick-create-list.js index 56d2e73ab4..401123a9d3 100644 --- a/client/src/views/portal/fields/quick-create-list.js +++ b/client/src/views/portal/fields/quick-create-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/portal/fields/tab-list.js b/client/src/views/portal/fields/tab-list.js index 4af4d878ea..0588fce9aa 100644 --- a/client/src/views/portal/fields/tab-list.js +++ b/client/src/views/portal/fields/tab-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/edit.js b/client/src/views/preferences/edit.js index b4c0404ee9..d0f3f09e46 100644 --- a/client/src/views/preferences/edit.js +++ b/client/src/views/preferences/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/auto-follow-entity-type-list.js b/client/src/views/preferences/fields/auto-follow-entity-type-list.js index ba3876737e..027bc51d88 100644 --- a/client/src/views/preferences/fields/auto-follow-entity-type-list.js +++ b/client/src/views/preferences/fields/auto-follow-entity-type-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/dashboard-tab-list.js b/client/src/views/preferences/fields/dashboard-tab-list.js index b3f029a0ef..65f1337d7b 100644 --- a/client/src/views/preferences/fields/dashboard-tab-list.js +++ b/client/src/views/preferences/fields/dashboard-tab-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/date-format.js b/client/src/views/preferences/fields/date-format.js index 342e14f8af..0c5cf3f41e 100644 --- a/client/src/views/preferences/fields/date-format.js +++ b/client/src/views/preferences/fields/date-format.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/default-currency.js b/client/src/views/preferences/fields/default-currency.js index 2eb332b579..6ac66f419e 100644 --- a/client/src/views/preferences/fields/default-currency.js +++ b/client/src/views/preferences/fields/default-currency.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/language.js b/client/src/views/preferences/fields/language.js index ffaebc2298..ba6a822989 100644 --- a/client/src/views/preferences/fields/language.js +++ b/client/src/views/preferences/fields/language.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/smtp-email-address.js b/client/src/views/preferences/fields/smtp-email-address.js index f00fd10b19..421aa9c903 100644 --- a/client/src/views/preferences/fields/smtp-email-address.js +++ b/client/src/views/preferences/fields/smtp-email-address.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/tab-list.js b/client/src/views/preferences/fields/tab-list.js index 5fa3ab94d4..638ebe5c2f 100644 --- a/client/src/views/preferences/fields/tab-list.js +++ b/client/src/views/preferences/fields/tab-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/test-send.js b/client/src/views/preferences/fields/test-send.js index 78de013757..9e7df8020e 100644 --- a/client/src/views/preferences/fields/test-send.js +++ b/client/src/views/preferences/fields/test-send.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/theme.js b/client/src/views/preferences/fields/theme.js index c01d09ddde..6e4c2b34ef 100644 --- a/client/src/views/preferences/fields/theme.js +++ b/client/src/views/preferences/fields/theme.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/time-format.js b/client/src/views/preferences/fields/time-format.js index e3d5459b62..fecb0a98e2 100644 --- a/client/src/views/preferences/fields/time-format.js +++ b/client/src/views/preferences/fields/time-format.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/time-zone.js b/client/src/views/preferences/fields/time-zone.js index ae51809873..b74b1b2b0a 100644 --- a/client/src/views/preferences/fields/time-zone.js +++ b/client/src/views/preferences/fields/time-zone.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/fields/week-start.js b/client/src/views/preferences/fields/week-start.js index 59ccb1596e..5ec94ea04c 100644 --- a/client/src/views/preferences/fields/week-start.js +++ b/client/src/views/preferences/fields/week-start.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/preferences/record/edit.js b/client/src/views/preferences/record/edit.js index 49584eab6a..6c0764e910 100644 --- a/client/src/views/preferences/record/edit.js +++ b/client/src/views/preferences/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/base.js b/client/src/views/record/base.js index dfc28cfc2d..ab000f52e3 100644 --- a/client/src/views/record/base.js +++ b/client/src/views/record/base.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/detail-bottom.js b/client/src/views/record/detail-bottom.js index 7d1ead54cf..7c99eb4d47 100644 --- a/client/src/views/record/detail-bottom.js +++ b/client/src/views/record/detail-bottom.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/detail-middle.js b/client/src/views/record/detail-middle.js index e2ddc35587..2189374211 100644 --- a/client/src/views/record/detail-middle.js +++ b/client/src/views/record/detail-middle.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/detail-side.js b/client/src/views/record/detail-side.js index 072bfccc7c..191a432a6e 100644 --- a/client/src/views/record/detail-side.js +++ b/client/src/views/record/detail-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/detail-small.js b/client/src/views/record/detail-small.js index 38dcca93a1..87a2055ae0 100644 --- a/client/src/views/record/detail-small.js +++ b/client/src/views/record/detail-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/detail.js b/client/src/views/record/detail.js index 575d32a1df..e9fcd36b37 100644 --- a/client/src/views/record/detail.js +++ b/client/src/views/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/edit-bottom.js b/client/src/views/record/edit-bottom.js index e3462fb00f..f6d09dc9d4 100644 --- a/client/src/views/record/edit-bottom.js +++ b/client/src/views/record/edit-bottom.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/edit-side.js b/client/src/views/record/edit-side.js index f0089e8f0f..55acba71ac 100644 --- a/client/src/views/record/edit-side.js +++ b/client/src/views/record/edit-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/edit-small.js b/client/src/views/record/edit-small.js index 3ff4a27f20..a737a09fd6 100644 --- a/client/src/views/record/edit-small.js +++ b/client/src/views/record/edit-small.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/edit.js b/client/src/views/record/edit.js index 3c835b0122..b6d3d8dddf 100644 --- a/client/src/views/record/edit.js +++ b/client/src/views/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/list-expanded.js b/client/src/views/record/list-expanded.js index 7f4cf3433d..24688595fa 100644 --- a/client/src/views/record/list-expanded.js +++ b/client/src/views/record/list-expanded.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/list-pagination.js b/client/src/views/record/list-pagination.js index a654f3869a..bc5a075d6b 100644 --- a/client/src/views/record/list-pagination.js +++ b/client/src/views/record/list-pagination.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/list-tree-item.js b/client/src/views/record/list-tree-item.js index 660db580b9..b37ee94c34 100644 --- a/client/src/views/record/list-tree-item.js +++ b/client/src/views/record/list-tree-item.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/list-tree.js b/client/src/views/record/list-tree.js index b0bb0e2f76..9bd5f7bbd1 100644 --- a/client/src/views/record/list-tree.js +++ b/client/src/views/record/list-tree.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/list.js b/client/src/views/record/list.js index e3ed436834..3ab4ab106e 100644 --- a/client/src/views/record/list.js +++ b/client/src/views/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/merge.js b/client/src/views/record/merge.js index 9b2caabad9..326f41d4cf 100644 --- a/client/src/views/record/merge.js +++ b/client/src/views/record/merge.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/panels/bottom.js b/client/src/views/record/panels/bottom.js index 73ad92d5b0..d3fb9173c1 100644 --- a/client/src/views/record/panels/bottom.js +++ b/client/src/views/record/panels/bottom.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/panels/default-side.js b/client/src/views/record/panels/default-side.js index f7d8ef66df..16e0aa1e4b 100644 --- a/client/src/views/record/panels/default-side.js +++ b/client/src/views/record/panels/default-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/panels/relationship.js b/client/src/views/record/panels/relationship.js index f94e6f6793..b920e923fd 100644 --- a/client/src/views/record/panels/relationship.js +++ b/client/src/views/record/panels/relationship.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/panels/side.js b/client/src/views/record/panels/side.js index 68534e814d..a817799908 100644 --- a/client/src/views/record/panels/side.js +++ b/client/src/views/record/panels/side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/default.js b/client/src/views/record/row-actions/default.js index 4d7b77694e..6112382346 100644 --- a/client/src/views/record/row-actions/default.js +++ b/client/src/views/record/row-actions/default.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/edit-and-remove.js b/client/src/views/record/row-actions/edit-and-remove.js index 6adb264775..fc6eff6c37 100644 --- a/client/src/views/record/row-actions/edit-and-remove.js +++ b/client/src/views/record/row-actions/edit-and-remove.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/empty.js b/client/src/views/record/row-actions/empty.js index db78a7506e..f741b15c95 100644 --- a/client/src/views/record/row-actions/empty.js +++ b/client/src/views/record/row-actions/empty.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-edit-and-remove.js b/client/src/views/record/row-actions/relationship-edit-and-remove.js index 33aab38158..19c68531e6 100644 --- a/client/src/views/record/row-actions/relationship-edit-and-remove.js +++ b/client/src/views/record/row-actions/relationship-edit-and-remove.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-no-remove.js b/client/src/views/record/row-actions/relationship-no-remove.js index aa4aeec450..41f4e43cf7 100644 --- a/client/src/views/record/row-actions/relationship-no-remove.js +++ b/client/src/views/record/row-actions/relationship-no-remove.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-no-unlink.js b/client/src/views/record/row-actions/relationship-no-unlink.js index 22fea24c76..4770b1ad4f 100644 --- a/client/src/views/record/row-actions/relationship-no-unlink.js +++ b/client/src/views/record/row-actions/relationship-no-unlink.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-remove-only.js b/client/src/views/record/row-actions/relationship-remove-only.js index 3d99460f4f..ee00b0d455 100644 --- a/client/src/views/record/row-actions/relationship-remove-only.js +++ b/client/src/views/record/row-actions/relationship-remove-only.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-unlink-only.js b/client/src/views/record/row-actions/relationship-unlink-only.js index ebfa953b1d..03589cb538 100644 --- a/client/src/views/record/row-actions/relationship-unlink-only.js +++ b/client/src/views/record/row-actions/relationship-unlink-only.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-view-and-edit.js b/client/src/views/record/row-actions/relationship-view-and-edit.js index e064d4620e..c0a21a27dd 100644 --- a/client/src/views/record/row-actions/relationship-view-and-edit.js +++ b/client/src/views/record/row-actions/relationship-view-and-edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship-view-and-unlink.js b/client/src/views/record/row-actions/relationship-view-and-unlink.js index 525f933dbc..9f25cad747 100644 --- a/client/src/views/record/row-actions/relationship-view-and-unlink.js +++ b/client/src/views/record/row-actions/relationship-view-and-unlink.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/relationship.js b/client/src/views/record/row-actions/relationship.js index f5a2c14ce5..773d8b590a 100644 --- a/client/src/views/record/row-actions/relationship.js +++ b/client/src/views/record/row-actions/relationship.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/remove-only.js b/client/src/views/record/row-actions/remove-only.js index 5b108f5afd..c2a7a97bf3 100644 --- a/client/src/views/record/row-actions/remove-only.js +++ b/client/src/views/record/row-actions/remove-only.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/view-and-edit.js b/client/src/views/record/row-actions/view-and-edit.js index 26f9338f88..d2f6f17b55 100644 --- a/client/src/views/record/row-actions/view-and-edit.js +++ b/client/src/views/record/row-actions/view-and-edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/row-actions/view-and-remove.js b/client/src/views/record/row-actions/view-and-remove.js index 12133bbd1d..c9b5ec7c6e 100644 --- a/client/src/views/record/row-actions/view-and-remove.js +++ b/client/src/views/record/row-actions/view-and-remove.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/record/search.js b/client/src/views/record/search.js index 1bd2b5aa47..5e48f37593 100644 --- a/client/src/views/record/search.js +++ b/client/src/views/record/search.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/list.js b/client/src/views/role/list.js index f46838b8fa..c93771f6a0 100644 --- a/client/src/views/role/list.js +++ b/client/src/views/role/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/modals/add-field.js b/client/src/views/role/modals/add-field.js index f64e7e1194..4f999afb3e 100644 --- a/client/src/views/role/modals/add-field.js +++ b/client/src/views/role/modals/add-field.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/record/detail-side.js b/client/src/views/role/record/detail-side.js index 3b27f177ff..7b75ad80b5 100644 --- a/client/src/views/role/record/detail-side.js +++ b/client/src/views/role/record/detail-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/record/detail.js b/client/src/views/role/record/detail.js index 0c2cbed5df..ade97c3846 100644 --- a/client/src/views/role/record/detail.js +++ b/client/src/views/role/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/record/edit.js b/client/src/views/role/record/edit.js index c2bc4c3fbc..bfc280a8c2 100644 --- a/client/src/views/role/record/edit.js +++ b/client/src/views/role/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/record/list.js b/client/src/views/role/record/list.js index 3fbe7434ad..a0ed389ccd 100644 --- a/client/src/views/role/record/list.js +++ b/client/src/views/role/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/record/panels/side.js b/client/src/views/role/record/panels/side.js index 25ae65bb20..4b8b90d8a5 100644 --- a/client/src/views/role/record/panels/side.js +++ b/client/src/views/role/record/panels/side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/role/record/table.js b/client/src/views/role/record/table.js index 09c84dcbed..9ad3f927a4 100644 --- a/client/src/views/role/record/table.js +++ b/client/src/views/role/record/table.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/scheduled-job/fields/job.js b/client/src/views/scheduled-job/fields/job.js index f22fc19ede..17e6cbb7a3 100644 --- a/client/src/views/scheduled-job/fields/job.js +++ b/client/src/views/scheduled-job/fields/job.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/scheduled-job/fields/scheduling.js b/client/src/views/scheduled-job/fields/scheduling.js index 2e067a7b0a..dab9c12789 100644 --- a/client/src/views/scheduled-job/fields/scheduling.js +++ b/client/src/views/scheduled-job/fields/scheduling.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/scheduled-job/list.js b/client/src/views/scheduled-job/list.js index 2622f34c44..b4b401fb08 100644 --- a/client/src/views/scheduled-job/list.js +++ b/client/src/views/scheduled-job/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/scheduled-job/record/detail.js b/client/src/views/scheduled-job/record/detail.js index 2a86438e56..ff3062d19f 100644 --- a/client/src/views/scheduled-job/record/detail.js +++ b/client/src/views/scheduled-job/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/scheduled-job/record/list.js b/client/src/views/scheduled-job/record/list.js index 81575172a8..08d15d3af5 100644 --- a/client/src/views/scheduled-job/record/list.js +++ b/client/src/views/scheduled-job/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/search/filter.js b/client/src/views/search/filter.js index 51ce0d1539..078efe3663 100644 --- a/client/src/views/search/filter.js +++ b/client/src/views/search/filter.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/edit.js b/client/src/views/settings/edit.js index 66b195df74..d7e8db5422 100644 --- a/client/src/views/settings/edit.js +++ b/client/src/views/settings/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/activities-entity-list.js b/client/src/views/settings/fields/activities-entity-list.js index 07d8132114..4b3b1c7eef 100644 --- a/client/src/views/settings/fields/activities-entity-list.js +++ b/client/src/views/settings/fields/activities-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/address-preview.js b/client/src/views/settings/fields/address-preview.js index 99e0a4b9b4..34851399d3 100644 --- a/client/src/views/settings/fields/address-preview.js +++ b/client/src/views/settings/fields/address-preview.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/assignment-email-notifications-entity-list.js b/client/src/views/settings/fields/assignment-email-notifications-entity-list.js index c6c3662e7c..787bca962c 100644 --- a/client/src/views/settings/fields/assignment-email-notifications-entity-list.js +++ b/client/src/views/settings/fields/assignment-email-notifications-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/assignment-notifications-entity-list.js b/client/src/views/settings/fields/assignment-notifications-entity-list.js index 336ba1eb2a..ecdc4aaf22 100644 --- a/client/src/views/settings/fields/assignment-notifications-entity-list.js +++ b/client/src/views/settings/fields/assignment-notifications-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/calendar-entity-list.js b/client/src/views/settings/fields/calendar-entity-list.js index 09dd8bead7..e1a7a0b97a 100644 --- a/client/src/views/settings/fields/calendar-entity-list.js +++ b/client/src/views/settings/fields/calendar-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/currency-rates.js b/client/src/views/settings/fields/currency-rates.js index bfe4db9073..e691e1daa0 100644 --- a/client/src/views/settings/fields/currency-rates.js +++ b/client/src/views/settings/fields/currency-rates.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/dashboard-layout.js b/client/src/views/settings/fields/dashboard-layout.js index a1a8632c8f..7093c12ed1 100644 --- a/client/src/views/settings/fields/dashboard-layout.js +++ b/client/src/views/settings/fields/dashboard-layout.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/default-currency.js b/client/src/views/settings/fields/default-currency.js index 65b172b9e4..1e269df3ff 100644 --- a/client/src/views/settings/fields/default-currency.js +++ b/client/src/views/settings/fields/default-currency.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/global-search-entity-list.js b/client/src/views/settings/fields/global-search-entity-list.js index fa3080331e..c3786aea36 100644 --- a/client/src/views/settings/fields/global-search-entity-list.js +++ b/client/src/views/settings/fields/global-search-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/history-entity-list.js b/client/src/views/settings/fields/history-entity-list.js index e90ce500c6..0761349101 100644 --- a/client/src/views/settings/fields/history-entity-list.js +++ b/client/src/views/settings/fields/history-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/language.js b/client/src/views/settings/fields/language.js index edfbbd1a1f..1f46175b53 100644 --- a/client/src/views/settings/fields/language.js +++ b/client/src/views/settings/fields/language.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/quick-create-list.js b/client/src/views/settings/fields/quick-create-list.js index 81e9443aad..115fb44fc1 100644 --- a/client/src/views/settings/fields/quick-create-list.js +++ b/client/src/views/settings/fields/quick-create-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/stream-email-notifications-entity-list.js b/client/src/views/settings/fields/stream-email-notifications-entity-list.js index a4fb1d3a68..cbc9e387e7 100644 --- a/client/src/views/settings/fields/stream-email-notifications-entity-list.js +++ b/client/src/views/settings/fields/stream-email-notifications-entity-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/tab-list.js b/client/src/views/settings/fields/tab-list.js index f915d4a928..8eb07421eb 100644 --- a/client/src/views/settings/fields/tab-list.js +++ b/client/src/views/settings/fields/tab-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/theme.js b/client/src/views/settings/fields/theme.js index 2218e088a6..1a50159438 100644 --- a/client/src/views/settings/fields/theme.js +++ b/client/src/views/settings/fields/theme.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/fields/thousand-separator.js b/client/src/views/settings/fields/thousand-separator.js index 34602f4d35..d20fbdb6ee 100644 --- a/client/src/views/settings/fields/thousand-separator.js +++ b/client/src/views/settings/fields/thousand-separator.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/settings/record/edit.js b/client/src/views/settings/record/edit.js index 6c18c71e1c..960f96059a 100644 --- a/client/src/views/settings/record/edit.js +++ b/client/src/views/settings/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site-portal/header.js b/client/src/views/site-portal/header.js index 5ab7b30578..8079c1e9ba 100644 --- a/client/src/views/site-portal/header.js +++ b/client/src/views/site-portal/header.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site-portal/master.js b/client/src/views/site-portal/master.js index 9d12a447d9..941db4ef54 100644 --- a/client/src/views/site-portal/master.js +++ b/client/src/views/site-portal/master.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site-portal/navbar.js b/client/src/views/site-portal/navbar.js index 6318851ef3..a3fb0e9c7f 100644 --- a/client/src/views/site-portal/navbar.js +++ b/client/src/views/site-portal/navbar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site/footer.js b/client/src/views/site/footer.js index 65428aa37e..cc7aa3df14 100644 --- a/client/src/views/site/footer.js +++ b/client/src/views/site/footer.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site/header.js b/client/src/views/site/header.js index c67ed24410..3deb28317e 100644 --- a/client/src/views/site/header.js +++ b/client/src/views/site/header.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site/master.js b/client/src/views/site/master.js index 6a488b792c..6d6aff2a69 100644 --- a/client/src/views/site/master.js +++ b/client/src/views/site/master.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/site/navbar.js b/client/src/views/site/navbar.js index 2013dcbb7d..ddbcd7252f 100644 --- a/client/src/views/site/navbar.js +++ b/client/src/views/site/navbar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream.js b/client/src/views/stream.js index 39ec9d064f..0d23bb1381 100644 --- a/client/src/views/stream.js +++ b/client/src/views/stream.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/fields/attachment-multiple.js b/client/src/views/stream/fields/attachment-multiple.js index 2a2bdf16f4..da1a928ee7 100644 --- a/client/src/views/stream/fields/attachment-multiple.js +++ b/client/src/views/stream/fields/attachment-multiple.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/fields/post.js b/client/src/views/stream/fields/post.js index b8385ff8a0..0c8fe7008b 100644 --- a/client/src/views/stream/fields/post.js +++ b/client/src/views/stream/fields/post.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/message.js b/client/src/views/stream/message.js index df86c03c67..2851ef094c 100644 --- a/client/src/views/stream/message.js +++ b/client/src/views/stream/message.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/modals/create-post.js b/client/src/views/stream/modals/create-post.js index 171ecad3a4..3fac11b94c 100644 --- a/client/src/views/stream/modals/create-post.js +++ b/client/src/views/stream/modals/create-post.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/note.js b/client/src/views/stream/note.js index 50901badc2..70382bebaf 100644 --- a/client/src/views/stream/note.js +++ b/client/src/views/stream/note.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/assign.js b/client/src/views/stream/notes/assign.js index 096a635a0a..c65f4f5ead 100644 --- a/client/src/views/stream/notes/assign.js +++ b/client/src/views/stream/notes/assign.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/create-related.js b/client/src/views/stream/notes/create-related.js index 1a0dec4a47..fcc65c0506 100644 --- a/client/src/views/stream/notes/create-related.js +++ b/client/src/views/stream/notes/create-related.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/create.js b/client/src/views/stream/notes/create.js index 2ad7affc97..09a1dd885d 100644 --- a/client/src/views/stream/notes/create.js +++ b/client/src/views/stream/notes/create.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/email-received.js b/client/src/views/stream/notes/email-received.js index 9e6d8b3b31..5e7556228a 100644 --- a/client/src/views/stream/notes/email-received.js +++ b/client/src/views/stream/notes/email-received.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/email-sent.js b/client/src/views/stream/notes/email-sent.js index b2bb6cc50e..d36a2f5629 100644 --- a/client/src/views/stream/notes/email-sent.js +++ b/client/src/views/stream/notes/email-sent.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/mention-in-post.js b/client/src/views/stream/notes/mention-in-post.js index 6bf12910f0..aa10853bec 100644 --- a/client/src/views/stream/notes/mention-in-post.js +++ b/client/src/views/stream/notes/mention-in-post.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/post.js b/client/src/views/stream/notes/post.js index ad9539b07e..1be766f53e 100644 --- a/client/src/views/stream/notes/post.js +++ b/client/src/views/stream/notes/post.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/relate.js b/client/src/views/stream/notes/relate.js index 4090bfb590..634a6824a3 100644 --- a/client/src/views/stream/notes/relate.js +++ b/client/src/views/stream/notes/relate.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/status.js b/client/src/views/stream/notes/status.js index 98d1c185b8..f116a3a303 100644 --- a/client/src/views/stream/notes/status.js +++ b/client/src/views/stream/notes/status.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/notes/update.js b/client/src/views/stream/notes/update.js index 71008d6d91..959f891738 100644 --- a/client/src/views/stream/notes/update.js +++ b/client/src/views/stream/notes/update.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/panel.js b/client/src/views/stream/panel.js index cf4bc598a7..2dcae92163 100644 --- a/client/src/views/stream/panel.js +++ b/client/src/views/stream/panel.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/record/edit.js b/client/src/views/stream/record/edit.js index 3f7f1689d7..2d2d3b16a9 100644 --- a/client/src/views/stream/record/edit.js +++ b/client/src/views/stream/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/record/list.js b/client/src/views/stream/record/list.js index 3c2ae59482..5ae44753f3 100644 --- a/client/src/views/stream/record/list.js +++ b/client/src/views/stream/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/stream/row-actions/default.js b/client/src/views/stream/row-actions/default.js index 51a81896d1..0af286b6ec 100644 --- a/client/src/views/stream/row-actions/default.js +++ b/client/src/views/stream/row-actions/default.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/team/record/detail.js b/client/src/views/team/record/detail.js index 23aa8156b0..fda33a0d14 100644 --- a/client/src/views/team/record/detail.js +++ b/client/src/views/team/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/team/record/edit.js b/client/src/views/team/record/edit.js index 8428305a7c..7ec3862da9 100644 --- a/client/src/views/team/record/edit.js +++ b/client/src/views/team/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/team/record/list.js b/client/src/views/team/record/list.js index 0334185d31..430dd1278a 100644 --- a/client/src/views/team/record/list.js +++ b/client/src/views/team/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/template/fields/variables.js b/client/src/views/template/fields/variables.js index 71c88deca7..a23ec49613 100644 --- a/client/src/views/template/fields/variables.js +++ b/client/src/views/template/fields/variables.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/template/record/detail.js b/client/src/views/template/record/detail.js index 60e5903af3..4a7ac51565 100644 --- a/client/src/views/template/record/detail.js +++ b/client/src/views/template/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/template/record/edit.js b/client/src/views/template/record/edit.js index c211c96b2b..4dd7629e46 100644 --- a/client/src/views/template/record/edit.js +++ b/client/src/views/template/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/detail.js b/client/src/views/user/detail.js index 1c27dae7c0..a05547a8a9 100644 --- a/client/src/views/user/detail.js +++ b/client/src/views/user/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/auto-follow-entity-type-list.js b/client/src/views/user/fields/auto-follow-entity-type-list.js index 4fc780c0f5..2c78130623 100644 --- a/client/src/views/user/fields/auto-follow-entity-type-list.js +++ b/client/src/views/user/fields/auto-follow-entity-type-list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/avatar.js b/client/src/views/user/fields/avatar.js index 08cb4283f0..f27ed5a739 100644 --- a/client/src/views/user/fields/avatar.js +++ b/client/src/views/user/fields/avatar.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/contact.js b/client/src/views/user/fields/contact.js index 3ba3b56e3e..1e8eb2b0a7 100644 --- a/client/src/views/user/fields/contact.js +++ b/client/src/views/user/fields/contact.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/generate-password.js b/client/src/views/user/fields/generate-password.js index 8d062773c7..5e2c7eb457 100644 --- a/client/src/views/user/fields/generate-password.js +++ b/client/src/views/user/fields/generate-password.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/name.js b/client/src/views/user/fields/name.js index d51b1a8280..cf2642794b 100644 --- a/client/src/views/user/fields/name.js +++ b/client/src/views/user/fields/name.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/teams.js b/client/src/views/user/fields/teams.js index 4a3602f2ec..508736c471 100644 --- a/client/src/views/user/fields/teams.js +++ b/client/src/views/user/fields/teams.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/fields/user-name.js b/client/src/views/user/fields/user-name.js index c159f03f3f..fc1e69caf6 100644 --- a/client/src/views/user/fields/user-name.js +++ b/client/src/views/user/fields/user-name.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/list.js b/client/src/views/user/list.js index 9cc7a1f6e4..ca6d81b16c 100644 --- a/client/src/views/user/list.js +++ b/client/src/views/user/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/modals/access.js b/client/src/views/user/modals/access.js index 3e9002fde6..92aebf1245 100644 --- a/client/src/views/user/modals/access.js +++ b/client/src/views/user/modals/access.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/modals/detail.js b/client/src/views/user/modals/detail.js index fed211e124..2b38e068cb 100644 --- a/client/src/views/user/modals/detail.js +++ b/client/src/views/user/modals/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/password-change-request.js b/client/src/views/user/password-change-request.js index 9b6ff9f4c9..82d8e134fd 100644 --- a/client/src/views/user/password-change-request.js +++ b/client/src/views/user/password-change-request.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/detail-bottom.js b/client/src/views/user/record/detail-bottom.js index 7c899ad229..56a328e3eb 100644 --- a/client/src/views/user/record/detail-bottom.js +++ b/client/src/views/user/record/detail-bottom.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/detail-quick-side.js b/client/src/views/user/record/detail-quick-side.js index d3dd7a52bf..90a369f354 100644 --- a/client/src/views/user/record/detail-quick-side.js +++ b/client/src/views/user/record/detail-quick-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/detail-quick.js b/client/src/views/user/record/detail-quick.js index 19d991aaea..689b640b95 100644 --- a/client/src/views/user/record/detail-quick.js +++ b/client/src/views/user/record/detail-quick.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/detail-side.js b/client/src/views/user/record/detail-side.js index dfb8367a76..b42bb84735 100644 --- a/client/src/views/user/record/detail-side.js +++ b/client/src/views/user/record/detail-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/detail.js b/client/src/views/user/record/detail.js index cdb76dd507..7542c02c8e 100644 --- a/client/src/views/user/record/detail.js +++ b/client/src/views/user/record/detail.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/edit-quick.js b/client/src/views/user/record/edit-quick.js index eef916638b..b597ca869d 100644 --- a/client/src/views/user/record/edit-quick.js +++ b/client/src/views/user/record/edit-quick.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/edit-side.js b/client/src/views/user/record/edit-side.js index 30e280cb25..2ecaac6322 100644 --- a/client/src/views/user/record/edit-side.js +++ b/client/src/views/user/record/edit-side.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/edit.js b/client/src/views/user/record/edit.js index d2ffaa7352..bf9f1ded4b 100644 --- a/client/src/views/user/record/edit.js +++ b/client/src/views/user/record/edit.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/list.js b/client/src/views/user/record/list.js index aadaab91f1..85e62d779e 100644 --- a/client/src/views/user/record/list.js +++ b/client/src/views/user/record/list.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/client/src/views/user/record/panels/stream.js b/client/src/views/user/record/panels/stream.js index 8bb89828a6..623899b938 100644 --- a/client/src/views/user/record/panels/stream.js +++ b/client/src/views/user/record/panels/stream.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/cron.php b/cron.php index 5ee6101b34..d608604afd 100644 --- a/cron.php +++ b/cron.php @@ -3,7 +3,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/data/.data b/data/.data old mode 100644 new mode 100755 diff --git a/diff.js b/diff.js index 0222d9274b..99ea093d9a 100644 --- a/diff.js +++ b/diff.js @@ -2,7 +2,7 @@ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. - * Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko + * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify diff --git a/extension.php b/extension.php index 2009115aff..228cc4d11f 100644 --- a/extension.php +++ b/extension.php @@ -1,9 +1,9 @@ -