开发者

CakePHP: full path behind link, can't remove?

开发者 https://www.devze.com 2023-03-25 13:21 出处:网络
Seems simple but I can\'t figure it out. Every link on my website suddenly shows the path behind the link

Seems simple but I can't figure it out. Every link on my website suddenly shows the path behind the link

Example: Not a member yet? Please register(/users/register) to add your pitch.

I can't select the path with Firebug to trace where it is coming from. Anyone has an idea? Thanks

UPDATE:开发者_JS百科

The PHP code for this link is:

echo $html->link('register', array('controller' => 'Users', 'action'=>'register'));

I use the BluePrint CSS Framework


Your problem isn't the style rule. Your problem is that you are linking a print only stylesheet from blueprint as a normal (screen, projection) stylesheet.

You need to make sure your css link has 'media' = 'print' as one of it's attributes.

IE

<?php
    ....
    echo $this->Html->css( array(
        join( DS, array( 'blueprint', 'print' )),
        'stylesheet',
        array( 'media' => 'print' )
    );
    ...
?>

Somewhere in the head section of your layout.


try this...

$this->Html->link(__('register', true), array('controller' => 'Users', 'action' => 'register')); 

cakePHP v. 1.3

0

精彩评论

暂无评论...
验证码 换一张
取 消