CMS MADE SIMPLE FORGE

CMS Made Simple Core

 

[#11963] Pages tabindex do not output with navigator and some errors in online documentation

avatar
Created By: Philippe Thomas (filto)
Date Submitted: Fri Feb 01 23:04:40 -0500 2019

Assigned To: Robert Campbell (calguy1000)
Version: 2.2.9
CMSMS Version: 2.2.9
Severity: Minor
Resolution: None
State: Open
Summary:
Pages tabindex do not output with navigator and some errors in online documentation
Detailed Description:
lib/classes/class.ContentBase.php L1803 ('tabindex' not 'tabIndex')

if (isset($params['tabindex'])) $this->mTabIndex = (empty($params['tabIndex']))
? '' : (int) $params['tabindex'];
--- corrected ---
if (isset($params['tabindex'])) $this->mTabIndex = (empty($params['tabindex']))
? '' : (int) $params['tabindex'];


online web documentation :
https://docs.cmsmadesimple.org/configuration/config-file/config-reference#config_assets_path

assets_path Default Value: $config['root_path'].'/tmp'
should be
$config['root_path'].'/assets'

#auto_alias_content
$config['auto_alias_content'] Default Value: FALSE ...but seems TRUE by default.

missing : image_uploads_url


History

Comments
avatar
Date: 2019-02-06 11:12
Posted By: Matt Hornsby (DIGI3) (DIGI3)

Documentation issues fixed, thank you.