Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2010-07-21 12:00:17 +0400
committermattpiwik <matthieu.aubry@gmail.com>2010-07-21 12:00:17 +0400
commit9ae233a5ddbd707606224edafe0c48298afe8623 (patch)
treefbcf7926cc1ac1c0b53677b27100774e3cad9b07 /core/SmartyPlugins
parentd2f47cf3b52cec8743992e3ace5fcee48691b49f (diff)
Fixes #1481
Admin UI pages were requiring period,date throwing an exception when not set properly as was the case after plugin disable. Made these screens not set date/period as calendar is never shown. Refs #1490 * Fixing loading... message for feedback form * Fixing style of inline help and yellow boxes in admin screens * Adding API to plugins not to display/disable git-svn-id: http://dev.piwik.org/svn/trunk@2604 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/SmartyPlugins')
-rw-r--r--core/SmartyPlugins/modifier.inlineHelp.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/SmartyPlugins/modifier.inlineHelp.php b/core/SmartyPlugins/modifier.inlineHelp.php
index bbd9892e61..858a6da270 100644
--- a/core/SmartyPlugins/modifier.inlineHelp.php
+++ b/core/SmartyPlugins/modifier.inlineHelp.php
@@ -18,9 +18,8 @@ function smarty_modifier_inlineHelp($text)
return
'<div class="ui-widget">'.
'<div class="ui-inline-help ui-state-highlight ui-corner-all">'.
- '<p style="font-size:8pt;"><span class="ui-icon ui-icon-info" style="float:left;margin-right:.3em;"></span>'.
- $text.
- '</p>'.
+ '<span class="ui-icon ui-icon-info" style="float:left;margin-right:.3em;"></span>'.
+ $text.
'</div>'.
'</div>';
}