1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-30 17:50:12 +02:00

Issue #1512 - Source options added. Help tips added.

This commit is contained in:
Cameron
2016-04-14 16:37:10 -07:00
parent e4b9db6307
commit 48f65c823f
4 changed files with 39 additions and 8 deletions

View File

@@ -586,7 +586,7 @@ class e_menuManager {
foreach($fields as $k=>$v)
{
$text .= "<tr><td class='text-left'>".$v['title']."</td>";
$v['writeParms']['class'] = 'e-save';
// $v['writeParms']['class'] = 'e-save';
$i = $k;
if(!empty($v['multilan']))
{
@@ -599,7 +599,15 @@ class e_menuManager {
}
$text .= "<td class='text-left'>".$form->renderElement($i, $value[$k], $v)."</td></tr>";
if(!empty($v['help']))
{
$v['writeParms']['title'] = e107::getParser()->toAttribute($v['help']);
}
$text .= "<td class='text-left'>".$form->renderElement($i, $value[$k], $v);
$text .= "</td></tr>";
}
}
else