• There is an error in this version. There is an erroneous & in line 627

    //Check to see what options exists and add the ones that don’t, keeping the values for the ones that do
    foreach($afdnOptions as $key => &$value){
    if(array_key_exists($key, $theOptions)){
    $value = $theOptions[“$key”];

    Remove that and it should be fine.

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s actually valid PHP5 code, but apparently not in valid in PHP4. In short, it indicates pass-by-reference. Version 2.01 has been released which fixes this error.

    When you get a chance, can you mark this topic as resolved (unless you still have some questions)?

    Thanks,

    Andrew

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Contdown Timer v2.0 Error’ is closed to new replies.