Talk:Upgrading a Joomla 1.5 template to Joomla 2.5
Andrecolbert (Talk | contribs) (→typo?) |
m (moved Talk:Upgrading a Joomla 1.5 template to Joomla 1.6 to Talk:Upgrading a Joomla 1.5 template to Joomla 2.5: Page moved (renamed) for Joomla version 2.5.) |
||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 9: | Line 9: | ||
Hope someone reads this. I see it as a minor bug. But i could be nice, if it could be corrected before final release in five days :) | Hope someone reads this. I see it as a minor bug. But i could be nice, if it could be corrected before final release in five days :) | ||
| − | == ''' | + | == '''Template Parameters''' == |
| − | + | ||
The wording in the following sentence needs improving. It doesn't make sense. | The wording in the following sentence needs improving. It doesn't make sense. | ||
<fieldset name="basic"> wraps the parameters in a slider and using name="basic" labels that slider as "Basic Options" and name="advanced" labels it as "Advanced Options". | <fieldset name="basic"> wraps the parameters in a slider and using name="basic" labels that slider as "Basic Options" and name="advanced" labels it as "Advanced Options". | ||
| + | |||
| + | :I changed the word ''slider'' to ''grouping element'' but that paragraph still needs clarification. | ||
| + | |||
| + | :[[User:Cmb|cmb]] 16:54, 19 February 2012 (CST) | ||
| + | |||
| + | == '''Sitename File not referenced''' == | ||
| + | |||
| + | The updated syntax below fails to provide a file reference: | ||
| + | |||
| + | <?php echo $mainframe->getCfg('sitename');?> is now $app->getCfg('sitename'); Where $app = JFactory::getApplication(); | ||
| + | |||
| + | == '''Error Codes''' == | ||
| + | |||
| + | The updated syntax below also fails to provide a file reference: | ||
| + | |||
| + | $this->error->code is replaced by $this->error->getCode(); | ||
| + | $this->error->message is replaced by $this->error->getMessage(); | ||
Latest revision as of 15:29, 1 July 2012
Hello!
I'm currently converting my joomla 1.5 template to 1.6... And i use Imagelist as a param, for copyright image!
Unfortunatly, it somehow puts: images/stories, infront of my urls. So default or any other image won't work.
And stories folder is removed in joomla 1.6
Hope someone reads this. I see it as a minor bug. But i could be nice, if it could be corrected before final release in five days :)
[edit] Template Parameters
The wording in the following sentence needs improving. It doesn't make sense.
<fieldset name="basic"> wraps the parameters in a slider and using name="basic" labels that slider as "Basic Options" and name="advanced" labels it as "Advanced Options".
- I changed the word slider to grouping element but that paragraph still needs clarification.
- cmb 16:54, 19 February 2012 (CST)
[edit] Sitename File not referenced
The updated syntax below fails to provide a file reference:
<?php echo $mainframe->getCfg('sitename');?> is now $app->getCfg('sitename'); Where $app = JFactory::getApplication();
[edit] Error Codes
The updated syntax below also fails to provide a file reference:
$this->error->code is replaced by $this->error->getCode(); $this->error->message is replaced by $this->error->getMessage();