For aMember 3 PRO users Only

Discussion in 'Installation' started by microvb, Oct 1, 2014.

?

Was this patch useful ?

  1. Yes

    33.3%
  2. No

    0 vote(s)
    0.0%
  3. I don't use aMember 3 anymore.

    66.7%
  1. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    As some of you may have noticed, aMember 3 has some problems during installation, as well as during runtime on more current versions of PHP and MySQL. This is not because aMember 3 is broken, however it is because the newer version of PHP and MySQL require a slight adjustment to be made.

    Unfortunately, what this means, is that a fresh copy of aMember 3 will not install on up to date versions of cPanel when using PHP 5.2+ and/or MySQL 5+ . As a result, I have created a new amember.sql file, as well as some instructions to patch some of the php scripts so that they will work again.

    I have attached the amember.sql file, however for the changes to amember's php files, you must have the final version of aMember 3 PRO. You can check this, by looking in your current amember.sql file for '## 320 ##'. At the time of writing this, I am unaware of whether these issues have been patched but I do not believe so given that aMember 3 is no longer officially supported. This is developed for those who have come to be dependant upon aMember 3 for various reasons (customized plugins, etc etc) or who simply prefer it over version 4. aMember version 4 is fantastic, however it does offer quite a number of changes which may or may not work for you.

    Instructions to Patch aMember 3.2 to work with PHP 5.2+ and MySQL 5+

    1. Download and extract the attached file to the amember folder overwriting the existing amember.sql file.
    2. Open setup.php and change mysql_escape_string to mysql_real_escape_string on lines 504, and 505.
    3. Open plugins.inc.php and remove the & (ampersand symbol) from line 481 .
    4. For good measure, insert a new line at the top of setup.php changing it from
    PHP:
    <?php

    function version_check($vercheck)
    {
    to
    PHP:
    <?php
    error_reporting
    (0);
    function 
    version_check($vercheck)
    {
    5. In /admin/setup.php , replace line 198 and 199 with the following:

    PHP:
                if (!isset($vars[$fname])) {

                    if(isset(
    $field['params']['default'])) {
                    
    $val $field['params']['default'];
                    } else {
                        
    $val '';
                    }
                }
    There are some other areas where you will need to remove the & (ampersand) from a line when viewing memberships as a member, however these instructions will get it installed cleanly without any errors.

    Attached Files:

    Last edited: Oct 1, 2014
  2. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    Some more changes :

    In /admin/setup.php change line 91 to
    PHP:
    if (isset($field['params']['size'])) $size $field['params']['size'];
    In /admin/setup.php change line 93 to
    PHP:
    if (!strlen($val) && isset($field['params']['default']) ) $val $field['params']['default'];
  3. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    Some more changes :

    In /admin/login.inc.php change line 52 to
    PHP:
    $b = new BruteforceProtector(BRUTEFORCE_PROTECT_ADMIN$db
  4. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    And even more changes:

    In /admin/ajax_cnt.php change line 25 to
    PHP:
    $j = new Services_JSON();
    In /admin/ajax_cnt.php change line 208 to
    PHP:
    $db amDb();
    In /admin/ajax_cnt.php change line 221 to
    PHP:
    $db amDb();
    In /admin/ajax_cnt.php change line 234 to
    PHP:
    $db amDb();
    In /admin/ajax_cnt.php change line 247 to
    PHP:
    $db amDb();
    In /admin/backup.php change line 103 to
    PHP:
    $t new_smarty();
    In /admin/config_email.inc.php change line 93 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /admin/email_templates.php change line 138 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /admin/email_templates.php change line 152 to
    PHP:
    $e = new aMemberEmailTemplate();
    In /admin/email_templates.php change line 224 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /admin/email_templates.php change line 233 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /admin/email_templates.php change line 267 to
    PHP:
    $my_tpl = new aMemberEmailTemplate;
    In /admin/email_templates.php change line 276 to
    PHP:
    $et = new aMemberEmailTemplate;
    In /admin/email_templates.php change line 347 to
    PHP:
    $my_tpl = new aMemberEmailTemplate;
    In /admin/email_templates.php change line 356 to
    PHP:
    $et = new aMemberEmailTemplate;
    In /admin/email_templates.php change line 378 to
    PHP:
    $my_tpl = new aMemberEmailTemplate;
    In /admin/email_templates.php change line 459 to
    PHP:
    $e = new aMemberEmailTemplate();
    In /admin/email_templates.php change line 498 to
    PHP:
    $e = new aMemberEmailTemplate();
    In /admin/email_test.php change line 65 to
    PHP:
    $mail = new PHPMailer();
    In /admin/import.php change line 491 to
    PHP:
    $data $db->encode_data($data);
    In /admin/import.php change line 494 to
    PHP:
    $record_escaped $db->escape_array($record);
    In /admin/index.php change line 151 to
    PHP:
    $t new_smarty();
    In /admin/index.php change line 252 to
    PHP:
    $menu initMainMenu();
    In /admin/login.inc.php change line 52 to
    PHP:
    $b = new BruteforceProtector(BRUTEFORCE_PROTECT_ADMIN$db,
    In /admin/menu.inc.php change line 24 to
    PHP:
    return $this->_items[] = new AdminMenuItem($title$url);
    In /admin/menu.inc.php change line 55 to
    PHP:
    $this->_sections[$id] = new AdminMenuSection($id$title$url$order);
    In /admin/menu.inc.php change line 77 to
    PHP:
    $s $this->_sections[$k];
    In /admin/menu.inc.php change line 107 to
    PHP:
    $m = new AdminMenu();
    In /admin/menu.inc.php change line 108 to
    PHP:
    $s $m->addSection('users''Browse Users''users.php?letter=A', -1000);
    In /admin/menu.inc.php change line 120 to
    PHP:
    $s $m->addSection('reports''Reports'null, -100);
    In /admin/menu.inc.php change line 129 to
    PHP:
    $s $m->addSection('products''Manage Products''products.php'100);
    In /admin/menu.inc.php change line 134 to
    PHP:
    $s $m->addSection('utils''Utilities'null1000);
    In /admin/menu.inc.php change line 149 to
    PHP:
    return $menu_list[0] = $m;
    In /admin/newsletter_archive.php change line 43 to
    PHP:
    $al $db->get_archive_list($start$count);
    In /admin/newsletter_archive.php change line 87 to
    PHP:
    $nl $db->get_newsletter(intval($vars['archive_id']));
    In /admin/newsletter_archive.php change line 95 to
    PHP:
    $a $db->get_newsletter($vars['archive_id'], 0);
    In /admin/newsletter_guests.php change line 52 to
    PHP:
    $gl $db->get_guests_list($start$count$vars['q']);
    In /admin/newsletter_guests.php change line 55 to
    PHP:
    $gl $db->get_guests_list($start$count''$vars['threads']);
    In /admin/newsletter_guests.php change line 114 to
    PHP:
    $g $db->get_guest(intval($vars['guest_id']));
    In /admin/newsletter_threads.php change line 74 to
    PHP:
    $tl $db->get_threads_list($start$count''$amember_cp=true);
    In /admin/newsletter_threads.php change line 207 to
    PHP:
    $tr $db->get_thread(intval($vars['thread_id']));
    In /admin/newsletter_view_guests.php change line 24 to
    PHP:
     $gl $db->get_guests_list($start$count'', array($vars['tr']));
    In /admin/newsletter_view_members.php change line 24 to
    PHP:
     $ml $db->get_members_list($start$count'', array($vars['tr']));
    In /admin/products.php change line 73 to
    PHP:
    $pr = new product($p);
    In /admin/products.php change line 96 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /admin/products.php change line 106 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /admin/products.php change line 148 to
    PHP:
    $pr = new product($vars);
    In /admin/protect.php change line 264 to
    PHP:
    $dir clean_path($dir);
    In /admin/q.php change line 26 to
    PHP:
    $d amDb();
    In /admin/rebuild.php change line 36 to
    PHP:
    $j = new Services_JSON();
    In /admin/restore.php change line 55 to
    PHP:
    $t new_smarty();
    In /admin/setup.php change line 107 to
    PHP:
    $obj = new $class(amConfig('protect.'.$r[1]));
    In /admin/sql.php change line 50 to
    PHP:
    $d amDb();
    In /admin/upgrade_db.php change line 197 to
    PHP:
    $d amDb();
    In /admin/upgrade_db.php change line 208 to
    PHP:
    $d amDb();
    In /admin/upgrade_db.php change line 306 to
    PHP:
    $d amDb();
    In /admin/users.php change line 38 to
    PHP:
    $ul $db->users_find_by_string("""additional:is_approved");
    In /admin/users.php change line 88 to
    PHP:
    $ul $db->get_users_list($letter."%"$vars['status'], $start$count);
    In /admin/users.php change line 260 to
    PHP:
    $products $db->get_products_list();
    In /admin/users.php change line 281 to
    PHP:
    $ul $db->users_find_by_string($q$q_where);
    In /admin/users.php change line 299 to
    PHP:
    $ul $db->users_find_by_product($product_id$include_expired);
    In /admin/users.php change line 318 to
    PHP:
    $ul $db->users_find_by_date($_GET['date'], $search_type);
    In /admin/users.php change line 336 to
    PHP:
    $ul $db->users_find_by_string('1''additional:is_locked');
    In /admin/users.php change line 369 to
    PHP:
    $u $db->get_user(intval($member_id));
    In /admin/users.php change line 591 to
    PHP:
    $products $db->get_products_list();
    In /admin/users.php change line 687 to
    PHP:
    $products $db->get_products_list();
    In /admin/users.php change line 693 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /admin/users.php change line 701 to
    PHP:
    && ($pay_plugin instantiate_plugin('payment'$p['paysys_id']))
    In /admin/users.php change line 937 to
    PHP:
    $tmp new_smarty();
    In /admin/users.php change line 969 to
    PHP:
    $ul $db->get_users_list("%", -1$start$count$member_id);
    In /aff.php change line 19 to
    PHP:
    $t new_smarty();
    In /aff_member.php change line 25 to
    PHP:
    $t new_smarty();
    In /aff_signup.php change line 145 to
    PHP:
    $t new_smarty();
    In /aff_signup.php change line 147 to
    PHP:
    $vars get_input_vars();
    In /ajax.php change line 23 to
    PHP:
    $j = new Services_JSON();
    In /cancel.php change line 28 to
    PHP:
    $t new_smarty();
    In /cancel.php change line 30 to
    PHP:
    $vars get_input_vars();
    In /common.inc.php change line 144 to
    PHP:
    $d amDb();
    In /common.inc.php change line 148 to
    PHP:
    $d amDb();
    In /common.inc.php change line 285 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 404 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 422 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 431 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 455 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 461 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 485 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 506 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 526 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 533 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 543 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 571 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 580 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 602 to
    PHP:
    if (!$t$t new_smarty();
    In /common.inc.php change line 637 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 683 to
    PHP:
    if (!$t$t new_smarty();
    In /common.inc.php change line 801 to
    PHP:
    if (!$t$t new_smarty();
    In /common.inc.php change line 964 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 971 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 978 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 985 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 992 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 997 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 1004 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 1010 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 1017 to
    PHP:
    $t new_smarty();
    In /common.inc.php change line 1021 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /common.inc.php change line 1198 to
    PHP:
    if (!$t$t new_smarty();
    In /common.inc.php change line 1305 to
    PHP:
    $mail = new PHPMailer();
    In /common.inc.php change line 1390 to
    PHP:
    if (!$t$t new_smarty();
    In /common.inc.php change line 1400 to
    PHP:
    if (!$t$t new_smarty();
    In /common.inc.php change line 1840 to
    PHP:
    $c $GLOBALS['config'];
    In /common.inc.php change line 1842 to
    PHP:
    $c $c[$s];
    In /includes/dbsimple/Mysql.php change line 62 to
    PHP:
    $s = new SDP_MySQLTableStruct($thisSDP_Core::getTablesPrefix() . $table);
    In /includes/pear/PEAR.php change line 183 to
    PHP:
    $_PEAR_destructor_object_list[] = $this;
    In /includes/pear/PEAR.php change line 221 to
    PHP:
    * do this$myVar PEAR::getStaticProperty('myclass''myVar');
    In /includes/pear/PEAR.php change line 338 to
    PHP:
    $setmode $this->_default_error_mode;
    In /includes/pear/PEAR.php change line 339 to
    PHP:
    $setoptions $this->_default_error_options;
    In /includes/pear/PEAR.php change line 341 to
    PHP:
    $setmode $GLOBALS['_PEAR_default_error_mode'];
    In /includes/pear/PEAR.php change line 342 to
    PHP:
    $setoptions $GLOBALS['_PEAR_default_error_options'];
    In /includes/pear/PEAR.php change line 569 to
    PHP:
    $a = new $ec($code$mode$options$userinfo);
    In /includes/pear/PEAR.php change line 572 to
    PHP:
    $a = new $ec($message$code$mode$options$userinfo);
    In /includes/pear/PEAR.php change line 592 to
    PHP:
    $a $this->raiseError($message$codenullnull$userinfo);
    In /includes/pear/PEAR.php change line 595 to
    PHP:
    $a PEAR::raiseError($message$codenullnull$userinfo);
    In /includes/pear/PEAR.php change line 603 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /includes/pear/PEAR.php change line 604 to
    PHP:
    $def_mode $GLOBALS['_PEAR_default_error_mode'];
    In /includes/pear/PEAR.php change line 605 to
    PHP:
    $def_options $GLOBALS['_PEAR_default_error_options'];
    In /includes/pear/PEAR.php change line 638 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /includes/pear/PEAR.php change line 639 to
    PHP:
    $setmode $GLOBALS['_PEAR_default_error_mode'];
    In /includes/pear/PEAR.php change line 640 to
    PHP:
    $setoptions $GLOBALS['_PEAR_default_error_options'];
    In /includes/pear/PEAR.php change line 688 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /includes/pear/PEAR.php change line 690 to
    PHP:
    $def_mode $this->_default_error_mode;
    In /includes/pear/PEAR.php change line 691 to
    PHP:
    $def_options $this->_default_error_options;
    In /includes/pear/PEAR.php change line 693 to
    PHP:
    $def_mode $GLOBALS['_PEAR_default_error_mode'];
    In /includes/pear/PEAR.php change line 694 to
    PHP:
    $def_options $GLOBALS['_PEAR_default_error_options'];
    In /includes/pear/PEAR.php change line 719 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /includes/pear/XML/Parser/Simple.php change line 82 to
    PHP:
    $p = new myParser();
    In /includes/pear/XML/Parser/Simple.php change line 162 to
    PHP:
    $this->_handlerObj $this;
    In /includes/pear/XML/Parser.php change line 284 to
    PHP:
    $this->_handlerObj $obj;
    In /includes/pear/XML/Parser.php change line 301 to
    PHP:
    $this->_handlerObj $this;
    In /includes/pear/XML/Parser.php change line 516 to
    PHP:
    $error $this->raiseError();
    In /includes/pear/XML/Parser.php change line 524 to
    PHP:
    $error $this->raiseError();
    In /includes/pear/XML/Parser.php change line 572 to
    PHP:
    $error $this->raiseError();
    In /includes/pear/XML/Parser.php change line 616 to
    PHP:
    $err = new XML_Parser_Error($msg$ecode);
    In /includes/pear/XML/Unserializer.php change line 260 to
    PHP:
    $unserializer = new XML_Unserializer();
    In /includes/pear/XML/Unserializer.php change line 801 to
    PHP:
    $value['value'] = new $classname;
    In /includes/pear/XML/Unserializer.php change line 869 to
    PHP:
    $this->_unserializedData $value['value'];
    In /includes/pear/XML/Unserializer.php change line 870 to
    PHP:
    $this->_root $value['name'];
    In /includes/pear/XML/Unserializer.php change line 910 to
    PHP:
    $parent['children'][$value['name']] = $value['value'];
    In /includes/pear/XML/Unserializer.php change line 974 to
    PHP:
    $this->_parser = new XML_Parser($this->
    In /index.php change line 56 to
    PHP:
    $t new_smarty();
    In /index.php change line 58 to
    PHP:
    $vars get_input_vars();
    In /login.php change line 30 to
    PHP:
    $t new_smarty();
    In /login.php change line 41 to
    PHP:
    $payments $db->get_user_payments(intval($_SESSION['_amember_id']), 1);
    In /member.inc.php change line 127 to
    PHP:
    $t new_smarty();
    In /member.inc.php change line 130 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 138 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 174 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 195 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 201 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 213 to
    PHP:
    $t new_smarty();
    In /member.inc.php change line 249 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 360 to
    PHP:
    $t new_smarty();
    In /member.inc.php change line 362 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 434 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 441 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 454 to
    PHP:
    $t new_smarty();
    In /member.inc.php change line 484 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 517 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 525 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.inc.php change line 538 to
    PHP:
    $t new_smarty();
    In /member.inc.php change line 568 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /member.php change line 22 to
    PHP:
    $t new_smarty();
    In /member.php change line 105 to
    PHP:
    $pc = new PriceCalculator();
    In /member.php change line 114 to
    PHP:
    $terms $pc->calculate();
    In /member.php change line 186 to
    PHP:
    $product get_product($product_id[0]);
    In /member.php change line 316 to
    PHP:
    $products $db->get_products_list();
    In /member.php change line 325 to
    PHP:
    $payments $db->get_user_payments(intval($_amember_id), 1);
    In /member.php change line 339 to
    PHP:
    && ($pay_plugin instantiate_plugin('payment'$v['paysys_id']))
    In /member.php change line 395 to
    PHP:
    $pr = new Product($products_to_renew[$k]);
    In /member.php change line 448 to
    PHP:
    $al $db->get_archive_list($start$count$vars['thread_id'], $_amember_id);
    In /newsletter.php change line 4 to
    PHP:
    $t new_smarty();
    In /newsletter.php change line 26 to
    PHP:
    $a $db->get_newsletter($vars['archive_id'], $member_id);
    In /newsletter.php change line 35 to
    PHP:
    $al $db->get_archive_list($start$count$vars['thread_id'], $member_id);
    In /newsletter.php change line 252 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /paysys.inc.php change line 312 to
    PHP:
    $db $this->get_db();
    In /paysys.inc.php change line 326 to
    PHP:
    $db $this->get_db();
    In /paysys.inc.php change line 338 to
    PHP:
    $db $this->get_db();
    In /paysys.inc.php change line 480 to
    PHP:
    \$protect instantiate_plugin('protect''{$pn}');
    In /plugins/db/mysql/mysql.inc.php change line 31 to
    PHP:
    $am_db connectMysql($GLOBALS['config']['db']['mysql']);
    In /plugins/db/mysql/mysql.inc.php change line 42 to
    PHP:
    $database DbSimple_Generic::connect(
    In /plugins/db/mysql/mysql.inc.php change line 143 to
    PHP:
    $data $this->encode_data($data);
    In /plugins/db/mysql/mysql.inc.php change line 146 to
    PHP:
    $v $this->escape_array($vars);
    In /plugins/db/mysql/mysql.inc.php change line 224 to
    PHP:
    $b = new BruteforceProtector(BRUTEFORCE_PROTECT_USER$this$config['bruteforce_count'], $config['bruteforce_delay']);
    In /plugins/db/mysql/mysql.inc.php change line 375 to
    PHP:
    $data $this->encode_data($data);
    In /plugins/db/mysql/mysql.inc.php change line 915 to
    PHP:
    $data $this->encode_data($data);
    In /plugins/db/mysql/mysql.inc.php change line 964 to
    PHP:
    $product get_product($products[$i]);
    In /plugins/db/mysql/mysql.inc.php change line 1205 to
    PHP:
    $row['data'] = $this->decode_data($row['data']);
    In /plugins/db/mysql/mysql.inc.php change line 1497 to
    PHP:
    $vals $this->decode_data$data);
    In /plugins/db/mysql/mysql.inc.php change line 1511 to
    PHP:
    $vals $this->decode_data$data);
    In /plugins/db/mysql/mysql.inc.php change line 3019 to
    PHP:
    $tr $this->get_thread($thread_id);
    In /plugins/db/mysql/mysql.inc.php change line 3113 to
    PHP:
    $tr $this->get_thread($thread_id);
    In /plugins/db/mysql/mysql.inc.php change line 3188 to
    PHP:
    $t new_smarty();
    In /plugins/db/mysql/mysql.inc.php change line 3453 to
    PHP:
    $db amDb();
    In /plugins/db/mysql/mysql.inc.php change line 3466 to
    PHP:
    $db amDb();
    In /plugins/db/mysql/mysql.inc.php change line 3473 to
    PHP:
    $db amDb();
    In /plugins/db/mysql/mysql.inc.php change line 3486 to
    PHP:
    $db amDb();
    In /plugins/db/mysql/mysql.inc.php change line 3501 to
    PHP:
    $db amDb();
    In /plugins/payment/1shoppingcart/1shoppingcart.inc.php change line 106 to
    PHP:
    $pr get_product($p['product_id']);
    In /plugins/payment/1shoppingcart/1shoppingcart.inc.php change line 117 to
    PHP:
    $pr get_product($p['product_id']);
    In /plugins/payment/1shoppingcart/1shoppingcart.inc.php change line 378 to
    PHP:
    $pl instantiate_plugin('payment''1shoppingcart');
    In /plugins/payment/1shoppingcart/config.inc.php change line 27 to
    PHP:
    $pl instantiate_plugin('payment''1shoppingcart');
    In /plugins/payment/1shoppingcart/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''1shoppingcart');
    In /plugins/payment/4cs/4cs.inc.php change line 36 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/4cs/4cs.inc.php change line 49 to
    PHP:
    $t new_smarty();
    In /plugins/payment/4cs/4cs.inc.php change line 96 to
    PHP:
    $pl instantiate_plugin('payment''4cs');
    In /plugins/payment/4cs/thanks.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''4cs');
    In /plugins/payment/alertpay/alertpay.inc.php change line 92 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/alertpay/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/alertpay/ipn.php change line 53 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /plugins/payment/alertpay/ipn.php change line 104 to
    PHP:
    //$payments = $db->get_user_payments(intval($pm['member_id']));
    In /plugins/payment/authorize/authorize.inc.php change line 65 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/authorize/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/beanstream/beanstream.inc.php change line 188 to
    PHP:
    $t new_smarty();
    In /plugins/payment/beanstream/vbv.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''beanstream');
    In /plugins/payment/beanstream_remote/cancel.php change line 28 to
    PHP:
    $t new_smarty();
    In /plugins/payment/beanstream_remote/cancel.php change line 30 to
    PHP:
    $vars get_input_vars();
    In /plugins/payment/beanstream_remote/close.php change line 37 to
    PHP:
    $t new_smarty();
    In /plugins/payment/beanstream_remote/close.php change line 43 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/beanstream_remote/close.php change line 51 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/beanstream_remote/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/bidpay/lib/class.soap_parser.php change line 524 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/bidpay/lib/class.soap_parser.php change line 531 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/bidpay/lib/class.soap_parser.php change line 546 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/bidpay/lib/class.soap_parser.php change line 553 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
  5. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    And even more ....

    In /plugins/payment/bidpay/lib/class.soap_parser.php change line 555 to
    PHP:
     $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/bidpay/lib/class.wsdl.php change line 644 to
    PHP:
    $xs $this->schemas[$ns][$i];
    In /plugins/payment/bidpay/lib/nusoap.php change line 4727 to
    PHP:
    $xs $this->schemas[$ns][$i];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6333 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6340 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6355 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6362 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6364 to
    PHP:
     $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/bluepay_r/bluepay_r.inc.php change line 55 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/bluepay_r/bluepay_r.inc.php change line 244 to
    PHP:
    $pl instantiate_plugin('payment''bluepay_r');
    In /plugins/payment/bluepay_r/cancel.php change line 9 to
    PHP:
    $t new_smarty();
    In /plugins/payment/bluepay_r/cancel.php change line 10 to
    PHP:
    $vars get_input_vars();
    In /plugins/payment/bluepay_r/ipn.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''bluepay_r');
    In /plugins/payment/cashu/cashu.inc.php change line 39 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/cashu/cashu.inc.php change line 56 to
    PHP:
    $t new_smarty();
    In /plugins/payment/cashu/cashu.inc.php change line 110 to
    PHP:
    $pl instantiate_plugin('payment''cashu');
    In /plugins/payment/ccbill/ccbill.inc.php change line 147 to
    PHP:
    $product $db->get_product($product_id);
    In /plugins/payment/ccbill/ccbill.inc.php change line 373 to
    PHP:
    $product get_product($payment['product_id']);
    In /plugins/payment/ccbill/ipn.php change line 23 to
    PHP:
    $t new_smarty();
    In /plugins/payment/ccbill/ipn.php change line 72 to
    PHP:
    $product get_product($p['product_id']);
    In /plugins/payment/cc_core/cc.php change line 66 to
    PHP:
    $t new_smarty();
    In /plugins/payment/cc_core/cc.php change line 184 to
    PHP:
    $plugin instantiate_plugin('payment'$payment['paysys_id']);
    In /plugins/payment/cc_core/cc.php change line 274 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/cc_core/cc.php change line 282 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/cc_core/cc_core.inc.php change line 50 to
    PHP:
    $pl instantiate_plugin('payment'$plugin);
    In /plugins/payment/cc_core/cc_core.inc.php change line 52 to
    PHP:
    $cc_core[$plugin] = $pl;
    In /plugins/payment/cc_core/cc_core.inc.php change line 242 to
    PHP:
    $pl instantiate_plugin('payment'$plugin);
    In /plugins/payment/cc_core/cc_core.inc.php change line 473 to
    PHP:
    $amDb amDb();
    In /plugins/payment/cc_core/cc_core.inc.php change line 478 to
    PHP:
    $pl instantiate_plugin('payment'$plugin);
    In /plugins/payment/cc_core/cc_core.inc.php change line 509 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/cc_core/cc_core.inc.php change line 523 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/cc_core/cc_core.inc.php change line 534 to
    PHP:
    $terms $pc->calculate();
    In /plugins/payment/cc_core/cc_core.inc.php change line 625 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/cc_core/cc_core.inc.php change line 678 to
    PHP:
    $plugin instantiate_plugin('payment'$payment['paysys_id']);
    In /plugins/payment/cc_core/cc_core.inc.php change line 741 to
    PHP:
    $plugin instantiate_plugin('payment'$payment['paysys_id']);
    In /plugins/payment/cc_core/cc_core.inc.php change line 817 to
    PHP:
    $plugin instantiate_plugin('payment'$paysys_id);
    In /plugins/payment/centipaid/centipaid.inc.php change line 38 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/centipaid/ipn.php change line 22 to
    PHP:
    $t new_smarty();
    In /plugins/payment/chronopay/chronopay.inc.php change line 59 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/chronopay/ipn.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/clickandbuy/clickandbuy.inc.php change line 101 to
    PHP:
    $product get_product($pm['product_id']);
    In /plugins/payment/clickandbuy/ipn.php change line 29 to
    PHP:
    $t new_smarty();
    In /plugins/payment/clickandbuy/lib/class.soap_parser.php change line 524 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/class.soap_parser.php change line 531 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/clickandbuy/lib/class.soap_parser.php change line 546 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/class.soap_parser.php change line 553 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/class.soap_parser.php change line 555 to
    PHP:
     $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/class.wsdl.php change line 644 to
    PHP:
    $xs $this->schemas[$ns][$i];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 4706 to
    PHP:
    $xs $this->schemas[$ns][$i];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6310 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6317 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6332 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6339 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6341 to
    PHP:
     $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/clickbank/cancel.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''clickbank');
    In /plugins/payment/clickbank/clickbank.inc.php change line 47 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/clickbank/clickbank.inc.php change line 597 to
    PHP:
     $t new_smarty();
    In /plugins/payment/clickbank/clickbank.inc.php change line 604 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/clickbank/clickbank.inc.php change line 612 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/clickbank/clickbank.inc.php change line 617 to
    PHP:
    $t new_smarty();
    In /plugins/payment/clickbank/clickbank.inc.php change line 675 to
    PHP:
    $pl instantiate_plugin('payment''clickbank');
    In /plugins/payment/clickbank/config.inc.php change line 32 to
    PHP:
    $pl instantiate_plugin('payment''clickbank');
    In /plugins/payment/clickbank/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''clickbank');
    In /plugins/payment/dibs/dibs.inc.php change line 31 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/dibs/dibs.inc.php change line 44 to
    PHP:
    $t new_smarty();
    In /plugins/payment/dibs/dibs.inc.php change line 118 to
    PHP:
    $pl instantiate_plugin('payment''dibs');
    In /plugins/payment/dibs/ipn.php change line 4 to
    PHP:
    $pl instantiate_plugin('payment''dibs');
    In /plugins/payment/directone_remote/directone_remote.inc.php change line 39 to
    PHP:
    $product $db->get_product($product_id);
    In /plugins/payment/directone_remote/mpn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/dotpay/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/dotpay/ipn.php change line 82 to
    PHP:
    $payments $db->get_user_payments(intval($pm['member_id']));
    In /plugins/payment/efsnet/cc.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/efsnet/cc.php change line 183 to
    PHP:
    $t new_smarty();
    In /plugins/payment/egold/egold.inc.php change line 40 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/egspay/egspay.inc.php change line 48 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/egspay/ipn.php change line 26 to
    PHP:
    $t new_smarty();
    In /plugins/payment/ematters/ematters.inc.php change line 40 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/ematters/ipn.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/ematters/ipn.php change line 88 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epassporte/epass-return.php change line 10 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epassporte/epassporte.inc.php change line 27 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epassporte/ipn.php change line 10 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epay/epay.inc.php change line 148 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epay/epay.inc.php change line 166 to
    PHP:
    $pl instantiate_plugin('payment''epay');
    In /plugins/payment/epay/ipn.php change line 23 to
    PHP:
    $pl instantiate_plugin('payment''epay');
    In /plugins/payment/epayeu/cancel.php change line 28 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epayeu/cancel.php change line 30 to
    PHP:
    $vars get_input_vars();
    In /plugins/payment/epayeu/epayeu.inc.php change line 133 to
    PHP:
     $product get_product($product_id);
    In /plugins/payment/epayeu/epayeu.inc.php change line 144 to
    PHP:
    $t new_smarty();
    In /plugins/payment/epayeu/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''epayeu');
    In /plugins/payment/epayeu/soap.php change line 4893 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/epayeu/soap.php change line 4899 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/epayeu/soap.php change line 4920 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/epayeu/soap.php change line 4927 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
    In /plugins/payment/epayeu/soap.php change line 4929 to
    PHP:
    $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/fastspring/fastspring.inc.php change line 35 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/fastspring/fastspring.inc.php change line 129 to
    PHP:
    $pl instantiate_plugin('payment''fastspring');
    In /plugins/payment/fastspring/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''fastspring');
    In /plugins/payment/gate2shop/gate2shop.inc.php change line 50 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/gate2shop/gate2shop.inc.php change line 98 to
    PHP:
    $t new_smarty();
    In /plugins/payment/gate2shop/gate2shop.inc.php change line 214 to
    PHP:
    $pl instantiate_plugin('payment''gate2shop');
    In /plugins/payment/gate2shop/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''gate2shop');
    In /plugins/payment/globill/globill.inc.php change line 80 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/globill/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/globillnet/globillnet.inc.php change line 35 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/globillnet/globillnet.inc.php change line 186 to
    PHP:
    $pl instantiate_plugin('payment''globillnet');
    In /plugins/payment/globillnet/ipn.php change line 23 to
    PHP:
    $pl instantiate_plugin('payment''globillnet');
    In /plugins/payment/google_checkout/config.inc.php change line 30 to
    PHP:
    $pl instantiate_plugin('payment''google_checkout');
    In /plugins/payment/google_checkout/google_checkout.inc.php change line 461 to
    PHP:
    //$pl = instantiate_plugin('payment', 'google_checkout');
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 183 to
    PHP:
    $_PEAR_destructor_object_list[] = $this;
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 221 to
    PHP:
    * do this$myVar PEAR::getStaticProperty('myclass''myVar');
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 338 to
    PHP:
    $setmode $this->_default_error_mode;
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 339 to
    PHP:
    $setoptions $this->_default_error_options;
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 341 to
    PHP:
    $setmode $GLOBALS['_PEAR_default_error_mode'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 342 to
    PHP:
    $setoptions $GLOBALS['_PEAR_default_error_options'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 569 to
    PHP:
    $a = new $ec($code$mode$options$userinfo);
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 572 to
    PHP:
    $a = new $ec($message$code$mode$options$userinfo);
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 592 to
    PHP:
    $a $this->raiseError($message$codenullnull$userinfo);
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 595 to
    PHP:
    $a PEAR::raiseError($message$codenullnull$userinfo);
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 603 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 604 to
    PHP:
    $def_mode $GLOBALS['_PEAR_default_error_mode'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 605 to
    PHP:
    $def_options $GLOBALS['_PEAR_default_error_options'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 638 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 639 to
    PHP:
    $setmode $GLOBALS['_PEAR_default_error_mode'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 640 to
    PHP:
    $setoptions $GLOBALS['_PEAR_default_error_options'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 688 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 690 to
    PHP:
    $def_mode $this->_default_error_mode;
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 691 to
    PHP:
    $def_options $this->_default_error_options;
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 693 to
    PHP:
    $def_mode $GLOBALS['_PEAR_default_error_mode'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 694 to
    PHP:
    $def_options $GLOBALS['_PEAR_default_error_options'];
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 719 to
    PHP:
    $stack $GLOBALS['_PEAR_error_handler_stack'];
    In /plugins/payment/google_checkout/PEAR/XML/Parser/Simple.php change line 82 to
    PHP:
    $p = new myParser();
    In /plugins/payment/google_checkout/PEAR/XML/Parser/Simple.php change line 162 to
    PHP:
    $this->_handlerObj $this;
    In /plugins/payment/google_checkout/PEAR/XML/Parser.php change line 284 to
    PHP:
    $this->_handlerObj $obj;
    In /plugins/payment/google_checkout/PEAR/XML/Parser.php change line 301 to
    PHP:
    $this->_handlerObj $this;
    In /plugins/payment/google_checkout/PEAR/XML/Parser.php change line 516 to
    PHP:
    $error $this->raiseError();
    In /plugins/payment/google_checkout/PEAR/XML/Parser.php change line 524 to
    PHP:
    $error $this->raiseError();
    In /plugins/payment/google_checkout/PEAR/XML/Parser.php change line 572 to
    PHP:
    $error $this->raiseError();
    In /plugins/payment/google_checkout/PEAR/XML/Parser.php change line 616 to
    PHP:
    $err = new XML_Parser_Error($msg$ecode);
    In /plugins/payment/google_checkout/PEAR/XML/Unserializer.php change line 260 to
    PHP:
    $unserializer = new XML_Unserializer();
    In /plugins/payment/google_checkout/PEAR/XML/Unserializer.php change line 801 to
    PHP:
    $value['value'] = new $classname;
    In /plugins/payment/google_checkout/PEAR/XML/Unserializer.php change line 869 to
    PHP:
    $this->_unserializedData $value['value'];
    In /plugins/payment/google_checkout/PEAR/XML/Unserializer.php change line 870 to
    PHP:
    $this->_root $value['name'];
    In /plugins/payment/google_checkout/PEAR/XML/Unserializer.php change line 910 to
    PHP:
    $parent['children'][$value['name']] = $value['value'];
    In /plugins/payment/google_checkout/PEAR/XML/Unserializer.php change line 974 to
    PHP:
    $this->_parser = new XML_Parser($this->
    In /plugins/payment/gspay/gspay.inc.php change line 50 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/gspay/gspay.inc.php change line 64 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/gspay/gspay.inc.php change line 155 to
    PHP:
    $t new_smarty();
    In /plugins/payment/gspay/gspay.inc.php change line 289 to
    PHP:
    $pl instantiate_plugin('payment''gspay');
    In /plugins/payment/gspay/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''gspay');
    In /plugins/payment/gspay/thanks.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''gspay');
    In /plugins/payment/gtbill/cancel.php change line 8 to
    PHP:
    $pl instantiate_plugin('payment''gtbill');
    In /plugins/payment/gtbill/cancel.php change line 26 to
    PHP:
    $product get_product($p['product_id']);
    In /plugins/payment/gtbill/gtbill.inc.php change line 37 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/gtbill/gtbill.inc.php change line 59 to
    PHP:
    $t new_smarty();
    In /plugins/payment/gtbill/gtbill.inc.php change line 123 to
    PHP:
    $product get_product($p['product_id']);
    In /plugins/payment/gtbill/gtbill.inc.php change line 248 to
    PHP:
    $pl instantiate_plugin('payment''gtbill');
    In /plugins/payment/gtbill/ipn.php change line 4 to
    PHP:
    $pl instantiate_plugin('payment''gtbill');
    In /plugins/payment/icepay/icepay.inc.php change line 36 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/icepay/icepay.inc.php change line 54 to
    PHP:
    $t new_smarty();
    In /plugins/payment/icepay/icepay.inc.php change line 124 to
    PHP:
    $pl instantiate_plugin('payment''icepay');
    In /plugins/payment/ideal/api/ThinMPI.php change line 51 to
    PHP:
    $this->security = new Security();
    In /plugins/payment/ideal/api/ThinMPI.php change line 242 to
    PHP:
    $res = new DirectoryResponse();
    In /plugins/payment/ideal/api/ThinMPI.php change line 301 to
    PHP:
    $bean = new IssuerBean();
    In /plugins/payment/ideal/api/ThinMPI.php change line 438 to
    PHP:
    $res = new AcquirerStatusResponse();
    In /plugins/payment/ideal/ideal.inc.php change line 40 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/ideal/ideal.inc.php change line 66 to
    PHP:
    $data = new AcquirerTrxRequest();
    In /plugins/payment/ideal/ideal.inc.php change line 127 to
    PHP:
    $data = new DirectoryRequest();
    In /plugins/payment/ideal/thanks.php change line 19 to
    PHP:
    $data = new AcquirerStatusRequest();
    In /plugins/payment/ideal/thanks.php change line 90 to
    PHP:
    $t new_smarty();
    In /plugins/payment/ikobo/config.inc.php change line 26 to
    PHP:
    $pl instantiate_plugin('payment''ikobo');
    In /plugins/payment/ikobo/ikobo.inc.php change line 90 to
    PHP:
    $pl instantiate_plugin('payment''ikobo');
    In /plugins/payment/ikobo/ipn.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''ikobo');
    In /plugins/payment/interkassa/interkassa.inc.php change line 67 to
    PHP:
    $t new_smarty();
    In /plugins/payment/interkassa/interkassa.inc.php change line 174 to
    PHP:
    $pl instantiate_plugin('payment''interkassa');
    In /plugins/payment/interkassa/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''interkassa');
    In /plugins/payment/internetsecure/internetsecure.inc.php change line 40 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/itransact/config.inc.php change line 18 to
    PHP:
    $pl instantiate_plugin('payment''itransact');
    In /plugins/payment/itransact/itransact.inc.php change line 87 to
    PHP:
    $t new_smarty();
    In /plugins/payment/itransact/itransact.inc.php change line 96 to
    PHP:
    $pl instantiate_plugin('payment''itransact');
    In /plugins/payment/itransact/thanks.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''itransact');
    In /plugins/payment/locaweb/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/locaweb/ipn.php change line 51 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /plugins/payment/locaweb/ipn.php change line 97 to
    PHP:
    //$payments = $db->get_user_payments(intval($pm['member_id']));
    In /plugins/payment/locaweb/locaweb.inc.php change line 54 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/manual_cc/manual_cc.inc.php change line 65 to
    PHP:
    $t new_smarty();
    In /plugins/payment/manual_cc/manual_cc.inc.php change line 104 to
    PHP:
    $t new_smarty();
    In /plugins/payment/manual_euro_bank/manual_euro_bank.inc.php change line 47 to
    PHP:
    $t new_smarty();
    In /plugins/payment/manual_euro_bank/manual_euro_bank.inc.php change line 89 to
    PHP:
    $t new_smarty();
    In /plugins/payment/manual_euro_bank/manual_euro_bank.inc.php change line 158 to
    PHP:
    $t new_smarty();
    In /plugins/payment/manual_euro_bank/manual_euro_bank.inc.php change line 186 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/manual_euro_bank/manual_euro_bank.inc.php change line 189 to
    PHP:
    $terms $pc->calculate();
    In /plugins/payment/manual_euro_bank/manual_euro_bank.inc.php change line 208 to
    PHP:
    $pl instantiate_plugin('payment''manual_euro_bank');
    In /plugins/payment/manual_euro_bank/submit.php change line 7 to
    PHP:
    $pl instantiate_plugin('payment''manual_euro_bank');
    In /plugins/payment/metacharge/ipn.php change line 47 to
    PHP:
    $t new_smarty();
    In /plugins/payment/metacharge/ipn.php change line 70 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /plugins/payment/metacharge/ipn.php change line 114 to
    PHP:
    $payments $db->get_user_payments(intval($pm['member_id']));
    In /plugins/payment/metacharge/metacharge.inc.php change line 144 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/metacharge/metacharge.inc.php change line 216 to
    PHP:
    $t new_smarty();
    In /plugins/payment/micropayment/ipn.php change line 4 to
    PHP:
    $pl instantiate_plugin('payment''micropayment');
    In /plugins/payment/micropayment/micropayment.inc.php change line 60 to
    PHP:
    $product $db->get_product($product_id);
    In /plugins/payment/micropayment_cc/micropayment_cc.inc.php change line 77 to
    PHP:
    $product $db->get_product($payment['product_id']);
    In /plugins/payment/migs_r/migs_r.inc.php change line 39 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/mollie/classes/class.micropayment-mollie.php change line 158 to
    PHP:
    $this->parent $this->document;
    In /plugins/payment/mollie/classes/class.micropayment-mollie.php change line 178 to
    PHP:
    $this->parent[$tag] = $arr;
    In /plugins/payment/mollie/classes/class.micropayment-mollie.php change line 181 to
    PHP:
    $this->parent $this->parent[$tag];
    In /plugins/payment/mollie/classes/class.micropayment-mollie.php change line 187 to
    PHP:
    $this->parent $this->parent[$key];
    In /plugins/payment/mollie/classes/class.micropayment-mollie.php change line 188 to
    PHP:
    $this->stack[] = $this->parent;
    In /plugins/payment/mollie/classes/class.micropayment-mollie.php change line 200 to
    PHP:
    if ($this->stack$this->parent $this->stack[count($this->stack)-1];
    In /plugins/payment/moneybookers/ipn.php change line 23 to
    PHP:
    $pl instantiate_plugin('payment''moneybookers');
    In /plugins/payment/moneybookers/moneybookers.inc.php change line 41 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/moneybookers/moneybookers.inc.php change line 252 to
    PHP:
    $pl instantiate_plugin('payment''moneybookers');
    In /plugins/payment/mpay/ipn.php change line 3 to
    PHP:
    $pl instantiate_plugin('payment''mpay');
    In /plugins/payment/multicards/ipn.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/multicards/multicards.inc.php change line 41 to
    PHP:
    $t new_smarty();
    In /plugins/payment/mydosh/ipn.php change line 4 to
    PHP:
    $pl instantiate_plugin('payment''mydosh');
    In /plugins/payment/mydosh/mydosh.inc.php change line 38 to
    PHP:
    $t new_smarty();
    In /plugins/payment/mydosh/mydosh.inc.php change line 121 to
    PHP:
    $product get_product($last_payment['product_id']);
    In /plugins/payment/mydosh/mydosh.inc.php change line 178 to
    PHP:
    $pl instantiate_plugin('payment''mydosh');
    In /plugins/payment/netbilling/cc.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/netbilling/cc.php change line 200 to
    PHP:
    $t new_smarty();
    In /plugins/payment/netbilling/netbilling.inc.php change line 188 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/netbilling_form/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''netbilling_form');
    In /plugins/payment/netbilling_form/netbilling_form.inc.php change line 36 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/netbilling_form/netbilling_form.inc.php change line 49 to
    PHP:
    $t new_smarty();
    In /plugins/payment/netbilling_form/netbilling_form.inc.php change line 129 to
    PHP:
    $pl instantiate_plugin('payment''netbilling_form');
    In /plugins/payment/nochex/nochex.inc.php change line 53 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/offline/offline.inc.php change line 55 to
    PHP:
    $t new_smarty();
    In /plugins/payment/ogone/config.inc.php change line 32 to
    PHP:
    $pl instantiate_plugin('payment''ogone');
    In /plugins/payment/ogone/ipn.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''ogone');
    In /plugins/payment/ogone/ogone.inc.php change line 115 to
    PHP:
    $pl instantiate_plugin('payment''ogone');
    In /plugins/payment/pagseguro/ipn.php change line 11 to
    PHP:
    $pl instantiate_plugin('payment''pagseguro');
    In /plugins/payment/pagseguro/pagseguro.inc.php change line 43 to
    PHP:
    $product get_product($product_id);
  6. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    And more changes still ...

    In /plugins/payment/passwordcall/passwordcall.inc.php change line 26 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/pay900/pay900.inc.php change line 22 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paycom/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paycom/paycom.inc.php change line 46 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paycom/resp.php change line 23 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paydotcom/ipn.php change line 81 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paydotcom/paydotcom.inc.php change line 44 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/paydotcom/paydotcom.inc.php change line 46 to
    PHP:
    $u $db->get_user(intval($member_id));
    In /plugins/payment/payflow_link/ipn.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/payflow_link/payflow_link.inc.php change line 40 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/paymate/ipn.php change line 5 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paymate/ipn.php change line 29 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paymate/paymate.inc.php change line 77 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/paynl/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''paynl');
    In /plugins/payment/paynl/paynl.inc.php change line 34 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/paynl/paynl.inc.php change line 199 to
    PHP:
    $pl instantiate_plugin('payment''paynl');
    In /plugins/payment/paypal_mobile/paypal_mobile.inc.php change line 197 to
    PHP:
    $pl instantiate_plugin('payment''paypal_mobile');
    In /plugins/payment/paypal_pro/config.inc.php change line 50 to
    PHP:
    $pl instantiate_plugin('payment''paypal_pro');
    In /plugins/payment/paypal_pro/ipn.php change line 4 to
    PHP:
    $pl instantiate_plugin('payment''paypal_pro');
    In /plugins/payment/paypal_pro/paypal_pro.inc.php change line 201 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/paypal_pro/return.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''paypal_pro');
    In /plugins/payment/paypal_r/config.inc.php change line 69 to
    PHP:
    $pl instantiate_plugin('payment''paypal_r');
    In /plugins/payment/paypal_r/import.php change line 3 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paypal_r/ipn.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''paypal_r');
    In /plugins/payment/paypal_r/ipnr.php change line 22 to
    PHP:
    $pl instantiate_plugin('payment''paypal_r');
    In /plugins/payment/paypal_r/paypal_r.inc.php change line 155 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/paypal_r/paypal_r.inc.php change line 299 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /plugins/payment/paypal_r/paypal_r.inc.php change line 565 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/paypal_r/paypal_r.inc.php change line 574 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/paypal_r/paypal_r.inc.php change line 882 to
    PHP:
    $pl instantiate_plugin('payment''paypal_r');
    In /plugins/payment/paypoint/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''paypoint');
    In /plugins/payment/paypoint/paypoint.inc.php change line 85 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paypoint/paypoint.inc.php change line 211 to
    PHP:
    $pl instantiate_plugin('payment''paypoint');
    In /plugins/payment/paypoint/thanks.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''paypoint');
    In /plugins/payment/payready/cc.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/payready/cc.php change line 203 to
    PHP:
    $t new_smarty();
    In /plugins/payment/payready/payready.inc.php change line 240 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/paysbuy/ipn.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/paysbuy/paysbuy.inc.php change line 66 to
    PHP:
    $t new_smarty();
    In /plugins/payment/plimus/plimus.inc.php change line 38 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/probilling/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/probilling/probilling.inc.php change line 62 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/profitbill/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''profitbill');
    In /plugins/payment/profitbill/profitbill.inc.php change line 45 to
    PHP:
    $t new_smarty();
    In /plugins/payment/profitbill/profitbill.inc.php change line 134 to
    PHP:
    $pl instantiate_plugin('payment''profitbill');
    In /plugins/payment/protx/protx.inc.php change line 83 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/qchex/qchex.inc.php change line 40 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/quickpay/cancel.php change line 28 to
    PHP:
    $t new_smarty();
    In /plugins/payment/quickpay/cancel.php change line 30 to
    PHP:
    $vars get_input_vars();
    In /plugins/payment/quickpay/ipn.php change line 4 to
    PHP:
    $pl instantiate_plugin('payment''quickpay');
    In /plugins/payment/quickpay/quickpay.inc.php change line 159 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/quickpay/quickpay.inc.php change line 189 to
    PHP:
    $t new_smarty();
    In /plugins/payment/realex_redirect/realex_redirect.inc.php change line 59 to
    PHP:
    $t new_smarty();
    In /plugins/payment/safecharge3d/safecharge3d.inc.php change line 122 to
    PHP:
    $input_vars get_input_vars();
    In /plugins/payment/safecharge3d/safecharge3d.inc.php change line 197 to
    PHP:
    $input_vars get_input_vars();
    In /plugins/payment/safepay/ipn.php change line 26 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /plugins/payment/safepay/safepay.inc.php change line 67 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/saferpay/saferpay.inc.php change line 37 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/saferpay/saferpay.inc.php change line 97 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/saferpay/saferpay.inc.php change line 252 to
    PHP:
    $pl instantiate_plugin('payment''saferpay');
    In /plugins/payment/secpay/lib/class.soap_parser.php change line 474 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/class.soap_parser.php change line 480 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/secpay/lib/class.soap_parser.php change line 501 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/class.soap_parser.php change line 508 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/class.soap_parser.php change line 510 to
    PHP:
     $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/nusoap.php change line 4896 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/nusoap.php change line 4902 to
    PHP:
    $params[$this->message[$kv[1]]['result']] = $this->message[$kv[2]]['result'];
    In /plugins/payment/secpay/lib/nusoap.php change line 4923 to
    PHP:
    $params[] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/nusoap.php change line 4930 to
    PHP:
    $params[$this->message[$child_pos]['name']][] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/lib/nusoap.php change line 4932 to
    PHP:
    $params[$this->message[$child_pos]['name']] = $this->message[$child_pos]['result'];
    In /plugins/payment/secpay/secpay.inc.php change line 220 to
    PHP:
    $t new_smarty();
    In /plugins/payment/secpay/secpay.inc.php change line 382 to
    PHP:
    $t new_smarty();
    In /plugins/payment/secpay/thanks.php change line 3 to
    PHP:
    $pl instantiate_plugin('payment''secpay');
    In /plugins/payment/securetrading/ipn.php change line 59 to
    PHP:
    $t new_smarty();
    In /plugins/payment/securetrading/securetrading.inc.php change line 60 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/segpay/segpay.inc.php change line 66 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/segpay/segpay.inc.php change line 70 to
    PHP:
    $u $db->get_user(intval($member_id));
    In /plugins/payment/segpay/segpay.inc.php change line 101 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/segpay/segpay.inc.php change line 107 to
    PHP:
    $u $db->get_user(intval($member_id));
    In /plugins/payment/segpay/segpay.inc.php change line 157 to
    PHP:
    $t new_smarty();
    In /plugins/payment/segpay/segpay.inc.php change line 187 to
    PHP:
    $product get_product($p['product_id']);
    In /plugins/payment/skypay/cancel.php change line 4 to
    PHP:
    $t new_smarty();
    In /plugins/payment/skypay/cancel.php change line 6 to
    PHP:
    $vars get_input_vars();
    In /plugins/payment/skypay/pay.php change line 50 to
    PHP:
    $t new_smarty();
    In /plugins/payment/skypay/skypay.php change line 84 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/stormpay/stormpay.inc.php change line 26 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/theinternetcommerce/cc.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/theinternetcommerce/cc.php change line 200 to
    PHP:
    $t new_smarty();
    In /plugins/payment/theinternetcommerce/theinternetcommerce.inc.php change line 224 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/tripledeal/tripledeal.inc.php change line 42 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/tripledeal/tripledeal.inc.php change line 190 to
    PHP:
    $pl instantiate_plugin('payment''tripledeal');
    In /plugins/payment/twocheckout_r/cancel.php change line 12 to
    PHP:
    $t new_smarty();
    In /plugins/payment/twocheckout_r/cancel.php change line 67 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/twocheckout_r/cancel.php change line 75 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /plugins/payment/twocheckout_r/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''twocheckout_r');
    In /plugins/payment/twocheckout_r/TwocheckoutAPI.inc.php change line 39 to
    PHP:
    $this->_encoder = new Services_JSON();
    In /plugins/payment/twocheckout_r/twocheckout_r.inc.php change line 57 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/twocheckout_r/twocheckout_r.inc.php change line 59 to
    PHP:
    $u $db->get_user(intval($member_id));
    In /plugins/payment/twocheckout_r/twocheckout_r.inc.php change line 106 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/twocheckout_r/twocheckout_r.inc.php change line 219 to
    PHP:
    $product get_product($p['product_id']);
    In /plugins/payment/twocheckout_r/twocheckout_r.inc.php change line 433 to
    PHP:
    $pl instantiate_plugin('payment''twocheckout_r');
    In /plugins/payment/vanco/ipn.php change line 24 to
    PHP:
    $t new_smarty();
    In /plugins/payment/vanco/vanco.inc.php change line 41 to
    PHP:
    $t new_smarty();
    In /plugins/payment/verotel/ipn.php change line 6 to
    PHP:
    $t new_smarty();
    In /plugins/payment/verotel/verotel.inc.php change line 46 to
    PHP:
    $product get_product($product_id);
    In /plugins/payment/webaffair/webaffair.inc.php change line 48 to
    PHP:
    $t new_smarty();
    In /plugins/payment/worldpay/ipn.php change line 25 to
    PHP:
    $t new_smarty();
    In /plugins/payment/worldpay/ipn.php change line 52 to
    PHP:
    $payments $db->get_user_payments(intval($member_id));
    In /plugins/payment/worldpay/ipn.php change line 111 to
    PHP:
    $payments $db->get_user_payments(intval($pm['member_id']));
    In /plugins/payment/worldpay/worldpay.inc.php change line 79 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/worldpay/worldpay.inc.php change line 166 to
    PHP:
    $pc = new PriceCalculator();
    In /plugins/payment/zombaio/ipn.php change line 21 to
    PHP:
    $pl instantiate_plugin('payment''zombaio');
    In /plugins/payment/zombaio/zombaio.inc.php change line 35 to
    PHP:
    $product get_product($products[0]['product_id']);
    In /plugins/payment/zombaio/zombaio.inc.php change line 50 to
    PHP:
    $t new_smarty();
    In /plugins/protect/php_include/check.inc.php change line 82 to
    PHP:
    $b = new BruteforceProtector(BRUTEFORCE_PROTECT_USER$db,
    In /plugins/protect/php_include/check.inc.php change line 438 to
    PHP:
    $t new_smarty();
    In /plugins.inc.php change line 130 to
    PHP:
    $exists $___plugins[$type][$name];
    In /plugins.inc.php change line 165 to
    PHP:
    $pay_plugin instantiate_plugin('payment'$paysys_id);
    In /plugins.inc.php change line 180 to
    PHP:
    $pay_plugin instantiate_plugin('payment'$paysys_id);
    In /plugins.inc.php change line 186 to
    PHP:
    $pay_plugin instantiate_plugin('payment'$paysys_id);
    In /plugins.inc.php change line 588 to
    PHP:
    $pr get_product($product_id);
    In /product.inc.php change line 196 to
    PHP:
     $payments $db->get_user_payments(intval($member_id), 1);
    In /product.inc.php change line 333 to
    PHP:
    if (!$GLOBALS['db']) $GLOBALS['db'] = instantiate_db();
    In /product.inc.php change line 379 to
    PHP:
    $l $this->lines[$k];
    In /product.inc.php change line 485 to
    PHP:
    $terms = new PaymentTerms();
    In /product.inc.php change line 494 to
    PHP:
    $terms->lines[$pid] = new PaymentTermsLine($pid$p['title'], $price$qty);
    In /profile.php change line 21 to
    PHP:
    $t new_smarty();
    In /resend.php change line 27 to
    PHP:
    $t new_smarty();
    In /resend.php change line 30 to
    PHP:
    $vars get_input_vars();
    In /sendpass.php change line 21 to
    PHP:
    $t new_smarty();
    In /sendpass.php change line 161 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /sendpass.php change line 187 to
    PHP:
    $et = new aMemberEmailTemplate();
    In /signup.php change line 130 to
    PHP:
    $pr = new Product($products[$k]);
    In /signup.php change line 192 to
    PHP:
    $t new_smarty();
    In /signup.php change line 194 to
    PHP:
    $vars get_input_vars();
    In /signup.php change line 277 to
    PHP:
    $pc = new PriceCalculator();
    In /signup.php change line 286 to
    PHP:
    $terms $pc->calculate();
    In /signup.php change line 372 to
    PHP:
    $pc = new PriceCalculator();
    In /signup.php change line 381 to
    PHP:
    $terms $pc->calculate();
    In /signup.php change line 403 to
    PHP:
    $product get_product($product_id[0]);
    In /smarty/Config_File.class.php change line 151 to
    PHP:
    $result $this->get($file_name$section_name$var_name);
    In /smarty/core/core.load_plugins.php change line 21 to
    PHP:
    $_plugin $smarty->_plugins[$_type][$_name];
    In /smarty/core/core.load_resource_plugin.php change line 25 to
    PHP:
    $_plugin $smarty->_plugins['resource'][$params['type']];
    In /smarty/Smarty.class.php change line 606 to
    PHP:
    $this->_tpl_vars[$tpl_var] = $value;
    In /smarty/Smarty.class.php change line 663 to
    PHP:
    $this->_tpl_vars[$tpl_var][$_key] = $value[$_key];
    In /smarty/Smarty.class.php change line 666 to
    PHP:
    $this->_tpl_vars[$tpl_var][] = $value;
    In /smarty/Smarty.class.php change line 1492 to
    PHP:
    $smarty_compiler->_reg_objects $this->_reg_objects;
    In /smarty/Smarty.class.php change line 1493 to
    PHP:
    $smarty_compiler->_plugins $this->_plugins;
    In /smarty/Smarty.class.php change line 1494 to
    PHP:
    $smarty_compiler->_tpl_vars $this->_tpl_vars;
    In /smarty/Smarty_Compiler.class.php change line 1239 to
    PHP:
    $token $tokens[$i];
    In /thanks.php change line 27 to
    PHP:
    $t new_smarty();
    In /thanks.php change line 29 to
    PHP:
    $vars get_input_vars();
    In /uniq_login.php change line 19 to
    PHP:
    $t new_smarty();
    In /unsubscribe.php change line 26 to
    PHP:
    $t new_smarty();
    In /unsubscribe_guest.php change line 26 to
    PHP:
    $t new_smarty();
    In /xmlrpc/index.php change line 199 to
    PHP:
    $server = new IXR_Server(array(
  7. microvb

    microvb Member

    Joined:
    Nov 23, 2007
    Messages:
    62
    And even more changes ...

    In /common.inc.php change line 81 to
    PHP:
    $result$source;
    In /common.inc.php change line 87 to
    PHP:
    $result$source;
    In /common.inc.php change line 97 to
    PHP:
    $result$source;
    In /common.inc.php change line 112 to
    PHP:
    $result$source;
    In /common.inc.php change line 118 to
    PHP:
    $result$source;
    In /includes/dbsimple/Generic.php change line 118 to
    PHP:
    $object =  new $class($parsed);
    In /includes/dbsimple/Generic.php change line 138 to
    PHP:
    $t =  new Cache_Lite(array('cacheDir' => $dir.'/''lifeTime' => null'automaticSerialization' => true));
    In /includes/dbsimple/Generic.php change line 139 to
    PHP:
    $object->_cacher =  $t;
    In /includes/dbsimple/Generic.php change line 635 to
    PHP:
    $rows[$r][$name] =  $this->_performNewBlob($rows[$r][$name]);
    In /includes/dbsimple/Generic.php change line 970 to
    PHP:
    $current =  $result;
    In /includes/dbsimple/Generic.php change line 975 to
    PHP:
    $current =  $current[$key];
    In /includes/dbsimple/Generic.php change line 979 to
    PHP:
    $current[] =  $tmp;
    In /includes/dbsimple/Generic.php change line 980 to
    PHP:
    $current =  $tmp;
    In /includes/dbsimple/Generic.php change line 1004 to
    PHP:
    $row =  $rows[$i];
    In /includes/dbsimple/Generic.php change line 1014 to
    PHP:
    $children[$pid][$id] =  $row;
    In /includes/dbsimple/Generic.php change line 1016 to
    PHP:
    $row['childNodes'] =  $children[$id];
    In /includes/dbsimple/Generic.php change line 1022 to
    PHP:
    $row =  $rows[$i];
    In /includes/dbsimple/Generic.php change line 1027 to
    PHP:
    $forest[$row[$idName]] =  $row;
    In /includes/dbsimple/Generic.php change line 1063 to
    PHP:
    $args[] =  $this;
    In /includes/dbsimple/Mysql.php change line 116 to
    PHP:
    $obj =  new DbSimple_Mysql_Blob($this$blobid);
    In /includes/fpdf/fpdf.php change line 428 to
    PHP:
    $cw$this->CurrentFont['cw'];
    In /includes/fpdf/fpdf.php change line 565 to
    PHP:
    $this->CurrentFont$this->fonts[$fontkey];
    In /includes/fpdf/fpdf.php change line 704 to
    PHP:
    $cw$this->CurrentFont['cw'];
    In /includes/fpdf/fpdf.php change line 817 to
    PHP:
    $cw$this->CurrentFont['cw'];
    In /includes/fpdf/fpdf.php change line 1243 to
    PHP:
    $cw$font['cw'];
    In /includes/pear/PEAR.php change line 87 to
    PHP:
    objects by reference$obj =  new PEAR_child;
    In /plugins/payment/bidpay/lib/class.soapclient.php change line 114 to
    PHP:
    $this->wsdl =  new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/bidpay/lib/class.soapclient.php change line 365 to
    PHP:
    $http =  $this->persistentConnection;
    In /plugins/payment/bidpay/lib/class.soap_parser.php change line 322 to
    PHP:
    $this->message[$pos]['result'] =  $this->multirefs[$id][$pos];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6131 to
    PHP:
    $this->message[$pos]['result'] =  $this->multirefs[$id][$pos];
    In /plugins/payment/bidpay/lib/nusoap.php change line 6519 to
    PHP:
    $this->wsdl =  new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/bidpay/lib/nusoap.php change line 6779 to
    PHP:
    $http =  $this->persistentConnection;
    In /plugins/payment/bidpay/lib/nusoapmime.php change line 130 to
    PHP:
    $mimeMessage =  new Mail_mimePart(''$params);
    In /plugins/payment/bidpay/lib/nusoapmime.php change line 350 to
    PHP:
    $mimeMessage =  new Mail_mimePart(''$params);
    In /plugins/payment/clickandbuy/lib/class.soapclient.php change line 114 to
    PHP:
    $this->wsdl =  new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/clickandbuy/lib/class.soapclient.php change line 365 to
    PHP:
    $http =  $this->persistentConnection;
    In /plugins/payment/clickandbuy/lib/class.soap_parser.php change line 322 to
    PHP:
    $this->message[$pos]['result'] = $this->multirefs[$id][$pos];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6108 to
    PHP:
    $this->message[$pos]['result'] = $this->multirefs[$id][$pos];
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6496 to
    PHP:
    $this->wsdl = new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/clickandbuy/lib/nusoap.php change line 6747 to
    PHP:
    $http $this->persistentConnection;
    In /plugins/payment/clickandbuy/lib/nusoapmime.php change line 130 to
    PHP:
    $mimeMessage = new Mail_mimePart(''$params);
    In /plugins/payment/clickandbuy/lib/nusoapmime.php change line 350 to
    PHP:
    $mimeMessage = new Mail_mimePart(''$params);
    In /plugins/payment/epayeu/soap.php change line 4704 to
    PHP:
    $this->message[$pos]['result'] = $this->multirefs[$id][$pos];
    In /plugins/payment/epayeu/soap.php change line 5039 to
    PHP:
    $this->wsdl = new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/epayeu/soap.php change line 5262 to
    PHP:
    $http $this->persistentConnection;
    In /plugins/payment/google_checkout/PEAR/PEAR.php change line 87 to
    PHP:
    objects by reference$obj = new PEAR_child;
    In /plugins/payment/paypal_r/paypal_r.inc.php change line 560 to
    PHP:
    if(!$t$t new_smarty();
    In /plugins/payment/secpay/lib/class.soapclient.php change line 99 to
    PHP:
    $this->wsdl = new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/secpay/lib/class.soapclient.php change line 322 to
    PHP:
    $http $this->persistentConnection;
    In /plugins/payment/secpay/lib/class.soap_parser.php change line 285 to
    PHP:
    $this->message[$pos]['result'] = $this->multirefs[$id][$pos];
    In /plugins/payment/secpay/lib/nusoap.php change line 4707 to
    PHP:
    $this->message[$pos]['result'] = $this->multirefs[$id][$pos];
    In /plugins/payment/secpay/lib/nusoap.php change line 5048 to
    PHP:
    $this->wsdl = new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout);
    In /plugins/payment/secpay/lib/nusoap.php change line 5271 to
    PHP:
    $http $this->persistentConnection;
    In /plugins/payment/secpay/lib/nusoapmime.php change line 117 to
    PHP:
    $mimeMessage = new Mail_mimePart(''$params);
    In /smarty/Config_File.class.php change line 279 to
    PHP:
    $vars $config_data['vars'];
    In /smarty/Config_File.class.php change line 305 to
    PHP:
    $vars $config_data['sections'][$section_name]['vars'];
    In /smarty/core/core.write_compiled_include.php change line 39 to
    PHP:
    $_match $_match_source[$_i];
    In /smarty/plugins/function.counter.php change line 34 to
    PHP:
    $counter $counters[$name];
    In /smarty/Smarty.class.php change line 1944 to
    PHP:
    $_cache_attrs $this->_cache_info['cache_attrs'][$cache_serial][$count];
    In /smarty/Smarty.class.php change line 1948 to
    PHP:
    $_return current($_cache_attrs);
    In /smarty/Smarty_Compiler.class.php change line 1382 to
    PHP:
    $cache_code "\$_cache_attrs = \$this->_smarty_cache_attrs('$this->_cache_serial','$_count');";

Share This Page