Assembla home | Assembla project page
 

Ticket #68 (closed Bug: fixed)

Opened 1 year ago

Last modified 1 year ago

Admin Documentation Link

Reported by: DyaGa Assigned to:
Priority: normal Milestone: Version 0.5
Component: General Code Version: 0.4
Severity: normal Keywords:
Cc:

Description

For example, when I am on page:

http://backend/index.php/admin/settings/index

there is a wrong Documentation link:

http://backend/index.php/admin/user_guide

must be: http://backend/user_guide

To solve the problem please change line:7 of backend\www\system\application\views\admin\footer.php file from this:

<a href="../user_guide"><?=$this->lang->line('general_documentation')?></a> |

to this:

<a href="<?=config_item('base_url');?>user_guide"><?=$this->lang->line('general_documentation')?></a> |

Change History

12/22/08 18:35:04 changed by aprice30

  • status changed from new to closed.
  • resolution set to fixed.

(In [189]) Fixed the location of the user guide inside the control panel. Closes #68