Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bonester1981

Pioneers
  • Posts

    13
  • Joined

  • Last visited

Reputation Activity

  1. Like
    bonester1981 got a reaction from bkellum in [Contribution] STS v4   
    Hi,
    some time ago I posted these errors using FWR´s Error Handling:
     
    I found a way to fix it:
    Error: Undefined property: sts_default::$enabled
    File: includes/classes/sts.php
    Line: 94

    if ($this->script->enabled==false) {
    Change to:

    if (isset($this->script->enabled) && $this->script->enabled==false) {
     
    Error: Undefined property: sts::$display_debug_output
    File: includes/modules/sts_inc/sts_display_output.php
    Line: 33

    if ($sts->display_debug_output) {
    Change to:

    if (isset($sts->display_debug_output)) {
     
    I hope this will help! :)
×
×
  • Create New...