Plugin Directory

Changeset 714341


Ignore:
Timestamp:
05/17/2013 12:04:59 PM (13 years ago)
Author:
szaleq
Message:

fixed typo in code

Location:
easy-watermark
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • easy-watermark/tags/0.4.2/lib/EWPlugin.php

    r714327 r714341  
    114114
    115115    public function __call($name, $args){
    116         if(method_exists($ewClass.'::'.$name)){
     116        if(method_exists(array(self, $name))){
    117117            return self::$name();
    118118        }
  • easy-watermark/trunk/lib/EWPlugin.php

    r714327 r714341  
    114114
    115115    public function __call($name, $args){
    116         if(method_exists($ewClass.'::'.$name)){
     116        if(method_exists(array(self, $name))){
    117117            return self::$name();
    118118        }
Note: See TracChangeset for help on using the changeset viewer.