* Modify the back button link of the created document.

This commit is contained in:
tianshujie
2021-09-03 14:18:28 +08:00
parent 58577bb42c
commit 92efb7df91
2 changed files with 7 additions and 3 deletions
+3 -1
View File
@@ -117,7 +117,9 @@
</tr>
<tr>
<td colspan='3' class='text-center form-actions'>
<?php echo html::submitButton() . ' ' . html::backButton($lang->goback, "data-app='{$app->tab}'");?>
<?php echo html::submitButton();?>
<?php if(empty($gobackLink)) echo html::backButton($lang->goback, "data-app='{$app->tab}'");?>
<?php if(!empty($gobackLink)) echo html::a($gobackLink, $lang->goback, '', "class='btn btn-back btn-wide'");?>
</td>
</tr>
</tbody>