diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | framework/TShellApplication.php | 8 |
2 files changed, 2 insertions, 8 deletions
@@ -24,6 +24,8 @@ BUG: Issue #243 - Cross-site scripting issue in TForm (ctrlaltca) BUG: Issue #254 - TDbCache should use hash index for the cache key (ctrlaltca) BUG: Issue #265 - Using scroll wheel causes NaN values in TDatePicker (Gabor) BUG: Issue #275 - THttpResponse::writeFile delivers the wrong content type (ctrlaltca) +BUG: Issue #283 - constructUrl does not work as before in TShellApplication (ctrlaltca) +BUG: Issue #284 - Wrong reading of information_schema (ctrlaltca) BUG: Issue #301 - Fixed a bug in TActiveFileUpload (ctrlaltca) ENH: Issue #337 - Prado serialization optimizations (Gabor) BUG: Issue #341 - TSafeHtmlParser messes up UTF8-encoded strings (ctrlaltca) diff --git a/framework/TShellApplication.php b/framework/TShellApplication.php index 08bab0ea..6e2f5cbb 100644 --- a/framework/TShellApplication.php +++ b/framework/TShellApplication.php @@ -35,14 +35,6 @@ */
class TShellApplication extends TApplication
{
-
- /**
- * Override parent implementation. TShellApplication doesn't need to start any service
- */
- public function startService($serviceID)
- {
-
- }
/**
* Runs the application.
* This method overrides the parent implementation by initializing
|