Ap.Muthu

Results 23 issues of Ap.Muthu

Line 16 in `app/dropins/system.dropin.php`: ````if(!in_array('cc', $email->fields())) {```` should be: ````if(is_null($email->fields()) || !in_array('cc', $email->fields())) {```` to avoid errors like: ````in_array() expects parameter 2 to be array, null given```` Similarly, lines 139...

When we run a query, the "Repeat" menu header link should toggle to "Repeating" each time it is clicked, to show it's status. What does the "every" link do?

Endless Query listing ensues each time bike is accessed - for the session it remains at last count. The truncated query string is displayed instead of the Query Name in...

User Variables in a templated system.

https://github.com/khanamiryan/php-qrcode-detector-decoder/blob/216e174007291875ada0a17b557daef8b372608d/composer.json#L2 ```` qrcode-detector-decoder ````

The constant `NEW_EMAIL_FOOTER` is referred to in the EMail Templates (`app/View/Emails/html/*.ctp`) but is missing in the `app/Config/constants.php` file. ![pwd_reset_new_email_footer](https://user-images.githubusercontent.com/2995044/31048637-385a222c-a63f-11e7-9e9d-fd6a649fa3e6.png)

The `app/Config/constants.php` file needs to be included only once and hence the `include` should be made `include_once` in the following files wherever a file is included: app/Config/core.php app/webroot/users/image_thumb/index.php This will...

### Expected behavior and actual behavior. Database Index optimisation - remove redundant indexes: ```` ALTER TABLE `activity` DROP INDEX `IDX_site_id`, DROP INDEX `IDX_site_created`, DROP INDEX `IDX_data_item_type`, DROP INDEX `IDX_activity_site_type_created_job`, ADD...

2 - Working <= 5
ON HOLD

All Language files have been cleaned up and sequenced as per the english version. The Swedish version had an unused string that was removed. https://github.com/apmuthu/opendocman/tree/master/includes/language

DB Schema & SQL cleanup, fixes