From 79bc376a2aa91b2c5f8bdda1e498469f2542fe55 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 17 Mar 2013 14:17:24 -0700 Subject: [PATCH] Remove captions from tablerender when in iframe mode. --- e107_themes/bootstrap/admin_theme.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/e107_themes/bootstrap/admin_theme.php b/e107_themes/bootstrap/admin_theme.php index 2a33d8bbf..97577cd29 100644 --- a/e107_themes/bootstrap/admin_theme.php +++ b/e107_themes/bootstrap/admin_theme.php @@ -582,7 +582,18 @@ function tablestyle($caption, $text, $mode) } - + if(e_IFRAME === true) + { + echo ' +
+
+ '.$text.' +
+
+ '; + + return; + }