Changeset 776:4ce635c0ca26 for inc/public/class.dc.template.php
- Timestamp:
- 12/02/11 08:50:18 (14 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/public/class.dc.template.php
r772 r776 742 742 { 743 743 $f = $this->getFilters($attr); 744 return '<?php echo '.sprintf($f,'$core-> url->getURLFor("archive")').'; ?>';744 return '<?php echo '.sprintf($f,'$core->blog->url.$core->url->getURLFor("archive")').'; ?>'; 745 745 } 746 746 … … 796 796 797 797 $f = $this->getFilters($attr); 798 return '<?php echo '.sprintf($f,'$core-> url->getURLFor("feed","'.$type.'")').'; ?>';798 return '<?php echo '.sprintf($f,'$core->blog->url.$core->url->getURLFor("feed","'.$type.'")').'; ?>'; 799 799 } 800 800 … … 881 881 { 882 882 $f = $this->getFilters($attr); 883 return '<?php echo '.sprintf($f,'$core-> url->getURLFor(\'rsd\')').'; ?>';883 return '<?php echo '.sprintf($f,'$core->blog->url.$core->url->getURLFor(\'rsd\')').'; ?>'; 884 884 } 885 885 … … 1045 1045 1046 1046 $f = $this->getFilters($attr); 1047 return '<?php echo '.sprintf($f,'$core-> url->getURLFor("feed","category/".'.1047 return '<?php echo '.sprintf($f,'$core->blog->url.$core->url->getURLFor("feed","category/".'. 1048 1048 '$_ctx->categories->cat_url."/'.$type.'")').'; ?>'; 1049 1049 } … … 1055 1055 { 1056 1056 $f = $this->getFilters($attr); 1057 return '<?php echo '.sprintf($f,'$core->url->getURLFor("category",$_ctx->categories->cat_url)').'; ?>'; 1057 return '<?php echo '.sprintf($f,'$core->blog->url.$core->url->getURLFor("category",'. 1058 '$_ctx->categories->cat_url)').'; ?>'; 1058 1059 } 1059 1060 … … 1934 1935 { 1935 1936 $f = $this->getFilters($attr); 1936 return '<?php echo '.sprintf($f,'$core->url->getURLFor("lang",$_ctx->langs->post_lang)').'; ?>'; 1937 return '<?php echo '.sprintf($f,'$core->blog->url.$core->url->getURLFor("lang",'. 1938 '$_ctx->langs->post_lang)').'; ?>'; 1937 1939 } 1938 1940
Note: See TracChangeset
for help on using the changeset viewer.