XoopsModules25x/apcal

View on GitHub

Showing 26,336 of 26,336 total issues

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $BitmapInfoHeader[$key] .= "\x01\x00";                                      // WORD   biPlanes;
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // DWORD  biClrUsed;
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$ThisImageColor' which will lead to PHP notices.
Open

                        imagesetpixel($PlottingIMG, $x, $this->m_gfh->m_nHeight - $y - 1, $ThisImageColor[$this->m_gfh->m_nBgColor]);
Severity: Minor
Found in thumbs/phpthumb.gif.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$ImageHeights' which will lead to PHP notices.
Open

            for ($y = $ImageHeights[$key] - 1; $y >= 0; $y--) {
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icAND' which will lead to PHP notices.
Open

            $icAND[$key] = '';
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$bpp' which will lead to PHP notices.
Open

            $biSizeImage = $ImageWidths[$key] * $ImageHeights[$key] * ($bpp[$key] / 8);
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$ImageHeights' which will lead to PHP notices.
Open

            $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageHeights[$key] * 2, 4); // LONG   biHeight;
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icAND' which will lead to PHP notices.
Open

            $icondata .= $icAND[$key];
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // DWORD  biClrImportant;
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$bpp' which will lead to PHP notices.
Open

            $icondata .= chr($bpp[$key]) . "\x00";                      // wBitCount;       // Bits per pixel
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $icondata .= $BitmapInfoHeader[$key];
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icAND' which will lead to PHP notices.
Open

            $dwBytesInRes = 40 + strlen($icXOR[$key]) + strlen($icAND[$key]);
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icAND' which will lead to PHP notices.
Open

            $dwImageOffset += strlen($icAND[$key]);
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $dwImageOffset += strlen($BitmapInfoHeader[$key]);
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // LONG   biYPelsPerMeter;
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icXOR' which will lead to PHP notices.
Open

            $dwImageOffset += strlen($icXOR[$key]);
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icXOR' which will lead to PHP notices.
Open

            $icondata .= $icXOR[$key];
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$icXOR' which will lead to PHP notices.
Open

            $dwBytesInRes = 40 + strlen($icXOR[$key]) + strlen($icAND[$key]);
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Avoid using undefined variables such as '$BitmapInfoHeader' which will lead to PHP notices.
Open

            $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // LONG   biXPelsPerMeter;
Severity: Minor
Found in thumbs/phpthumb.ico.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

Function writeExtendedContent has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        writeExtendedContent: function () {
            if (this.hasExtendedContent) return;
            var exp = this;
            this.body = hs.getElementByClass(this.innerContent, 'DIV', 'highslide-body');
            if (this.objectType == 'iframe') {
Severity: Minor
Found in assets/images/js/highslide/highslide-full.js - About 1 hr to fix
    Severity
    Category
    Status
    Source
    Language