From 5a7778acbe1fb6fcf8c4d813f2a9d17f901dbdc9 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 30 Jun 2022 13:37:34 +0800 Subject: [PATCH] * Fixed TAB return error. --- module/common/model.php | 4 ++-- module/testtask/view/linkcase.html.php | 2 +- module/testtask/view/report.html.php | 2 +- module/testtask/view/view.html.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/module/common/model.php b/module/common/model.php index 880ebdf6e6..a80b4b904a 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -1800,14 +1800,14 @@ EOD; * @access public * @return void */ - static public function printBack($backLink, $class = '') + static public function printBack($backLink, $class = '', $misc = '') { global $lang, $app; if(isonlybody()) return false; if(empty($class)) $class = 'btn'; $title = $lang->goback . $lang->backShortcutKey; - echo html::a($backLink, ' ' . $lang->goback, '', "id='back' class='{$class}' title={$title} data-app='{$app->tab}'"); + echo html::a($backLink, ' ' . $lang->goback, '', "id='back' class='{$class}' title={$title} $misc"); } /** diff --git a/module/testtask/view/linkcase.html.php b/module/testtask/view/linkcase.html.php index 07ad73eac5..821c398f65 100644 --- a/module/testtask/view/linkcase.html.php +++ b/module/testtask/view/linkcase.html.php @@ -14,7 +14,7 @@