From 5038893a7b944417e7777426f145e2b87f37f4c1 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Tue, 4 Dec 2012 11:29:09 +0100 Subject: [PATCH] self::base_get() moved in the proper place --- web/Obj/transports.phh | 8 ++++---- web/Obj/user.phh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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)); -- 2.17.1