From: Matteo Nastasi (mop) Date: Tue, 4 Dec 2012 10:29:09 +0000 (+0100) Subject: self::base_get() moved in the proper place X-Git-Tag: v4.4.0~6 X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=5038893a7b944417e7777426f145e2b87f37f4c1;p=brisk.git self::base_get() moved in the proper place --- diff --git a/web/Obj/transports.phh b/web/Obj/transports.phh index 08ad7a0..92f11b4 100644 --- a/web/Obj/transports.phh +++ b/web/Obj/transports.phh @@ -31,7 +31,7 @@ class Transport_template { { } - static function fini($init_string, $blockerr) + static function fini($init_string, $base, $blockerr) { } @@ -57,7 +57,7 @@ class Transport_xhr { return ($ret); } - static function fini($init_string, $blockerr) + static function fini($init_string, $base, $blockerr) { return (""); } @@ -101,7 +101,7 @@ window.onload = function () { if (xynt_streaming != \"ready\") { xynt_streaming. return ($ret); } - static function fini($init_string, $blockerr) + static function fini($init_string, $base, $blockerr) { $ret = ""; $ret .= sprintf(" @@ -109,7 +109,7 @@ window.onload = function () { if (xynt_streaming != \"ready\") { xynt_streaming. diff --git a/web/Obj/user.phh b/web/Obj/user.phh index d3aaf85..a770964 100644 --- a/web/Obj/user.phh +++ b/web/Obj/user.phh @@ -653,7 +653,7 @@ class User { // FIXME: dynamic "Transport_" type $tans_class = "Transport_iframe"; - $body = $tans_class::fini($init_string, static::blocking_error($is_unrecoverable)); + $body = $tans_class::fini($init_string, self::base_get(), static::blocking_error($is_unrecoverable)); // ELSE IF XHR THEN: // return (static::blocking_error($is_unrecoverable));