Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function __construct($name) |
||
23 | { |
||
24 | if (($this->termsPage = SiteConfig::current_site_config()->TermsPage()) && $this->termsPage->exists()) { |
||
25 | parent::__construct($name, _t( |
||
26 | 'TermsAndConditionsField.TERMS_CONDITIONS', |
||
27 | "I agree to the terms and conditions stated on the <a href='{link}' target='new' title='Read the shop terms and conditions for this site'>{title}</a> page", |
||
28 | null, |
||
29 | array('link' => $this->termsPage->Link(), 'title' => $this->termsPage->Title) |
||
|
|||
30 | ), $value = null); |
||
31 | } |
||
32 | } |
||
33 | |||
53 | } |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: