diff --git a/htdocs/categories/fiche.php b/htdocs/categories/fiche.php
index 34a036156a3..c97d023f5b8 100644
--- a/htdocs/categories/fiche.php
+++ b/htdocs/categories/fiche.php
@@ -211,7 +211,7 @@ if ($user->rights->categorie->creer)
// Ref
print '
';
- print '| '.$langs->trans("Ref").' | ';
+ print ' | '.$langs->trans("Ref").' | ';
print' |
';
// Description
diff --git a/htdocs/core/class/html.formother.class.php b/htdocs/core/class/html.formother.class.php
index c87f2df36dd..c3157c07124 100644
--- a/htdocs/core/class/html.formother.class.php
+++ b/htdocs/core/class/html.formother.class.php
@@ -1004,11 +1004,13 @@ class FormOther
}
}
- $emptybox->box_id='A';
- $emptybox->info_box_head=array();
- $emptybox->info_box_contents=array();
- $emptybox->showBox(array(),array());
-
+ if (empty($conf->browser->phone))
+ {
+ $emptybox->box_id='A';
+ $emptybox->info_box_head=array();
+ $emptybox->info_box_contents=array();
+ $emptybox->showBox(array(),array());
+ }
print "\n";
print "\n";
@@ -1033,11 +1035,13 @@ class FormOther
}
}
- $emptybox->box_id='B';
- $emptybox->info_box_head=array();
- $emptybox->info_box_contents=array();
- $emptybox->showBox(array(),array());
-
+ if (empty($conf->browser->phone))
+ {
+ $emptybox->box_id='B';
+ $emptybox->info_box_head=array();
+ $emptybox->info_box_contents=array();
+ $emptybox->showBox(array(),array());
+ }
print "\n";
print "\n";
diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php
index 6e03a9ac2ce..6bee9a606ca 100644
--- a/htdocs/main.inc.php
+++ b/htdocs/main.inc.php
@@ -984,7 +984,10 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
if (! empty($conf->global->MAIN_USE_JQUERY_JMOBILE) || defined('REQUIRE_JQUERY_JMOBILE') || ! empty($conf->dol_use_jmobile))
{
print ''."\n";
- }
+ //$arrayofcss=array('/includes/jquery/plugins/jquerytreeview/jquery.treeview.css');
+ print ''."\n";
+ }
+
}
print ''."\n";
@@ -1148,6 +1151,9 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
if (! empty($conf->global->MAIN_USE_JQUERY_JMOBILE) || defined('REQUIRE_JQUERY_JMOBILE') || (! empty($conf->dol_use_jmobile) && $conf->dol_use_jmobile > 0))
{
print ''."\n";
+ //$arrayofjs=array('/includes/jquery/plugins/jquerytreeview/jquery.treeview.js', '/includes/jquery/plugins/jquerytreeview/lib/jquery.cookie.js');
+ print ''."\n";
+ print ''."\n";
}
}