diff --git a/www/client/homeinterpubbask.php b/www/client/homeinterpubbask.php
index a2c6f276dc..02df8a87a8 100644
--- a/www/client/homeinterpubbask.php
+++ b/www/client/homeinterpubbask.php
@@ -15,295 +15,295 @@
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
-$Core = \bootstrap::getCore();
-$appbox = appbox::get_instance($Core);
-$session = $appbox->get_session();
-
-$th_size = $user->getPrefs('images_size');
-
-$user = $Core->getAuthenticatedUser();
-
-$RN = array("\r\n", "\n", "\r");
-
-$conn = $appbox->get_connection();
-
-$sql = 'SELECT s.public, s.pub_restrict,c.sselcont_id, c.base_id, sb.*, c.record_id, s.ssel_id, s.name, s.descript, c.ord, ' .
- 'DATE_FORMAT(s.pub_date,"' . _('phraseanet::technique::datetime') . '") AS pub_date, ' .
- 'DATE_FORMAT(s.updater,"' . _('phraseanet::technique::date') . '") AS updater, ' .
- 's.updater as dateC1, s.pub_date as dateC2,' .
- ' n.id, u.usr_nom, u.usr_prenom, u.usr_login, u.usr_mail ' .
- ', bu.mask_and ' .
- ', bu.mask_xor ' .
- 'FROM (sselcont c, ssel s, usr u, bas b, sbas sb) ' .
- 'LEFT JOIN sselnew n ' .
- 'ON (n.ssel_id = s.ssel_id AND n.usr_id = :usr_id) ' .
- ' LEFT JOIN basusr bu ON (bu.base_id = b.base_id AND bu.usr_id = :usr_id_bis)' .
- 'WHERE s.ssel_id = c.ssel_id AND s.public="1" ' .
- 'AND (s.pub_restrict="0" ' .
- 'OR (s.pub_restrict="1" AND c.base_id IN ' .
- ' (SELECT base_id FROM basusr WHERE usr_id = :usr_id_sub AND actif = "1")))' .
- ' AND u.usr_id = s.usr_id AND temporaryType=0 ' .
- ' AND b.sbas_id = sb.sbas_id' .
- ' AND b.base_id = c.base_id' .
- ' ORDER BY s.pub_date DESC, c.ord ASC';
-
-$sqlMe = 'SELECT usr_login, usr_password FROM usr WHERE usr_id = :usr_id';
-
-$stmt = $conn->prepare($sqlMe);
-$stmt->execute(array(':usr_id' => $session->get_usr_id()));
-$rawMe = $stmt->fetch(PDO::FETCH_ASSOC);
-$stmt->closeCursor();
-
-$info_usr = null;
-
-if ($rawMe)
-{
- $info_usr = $rawMe;
-}
-
-$core = \bootstrap::getCore();
-$twig = $core->getTwig();
-
-$stmt = $conn->prepare($sql);
-$usr_id = $session->get_usr_id();
-$stmt->execute(array(':usr_id' => $usr_id, ':usr_id_bis' => $usr_id, ':usr_id_sub' => $usr_id));
-$rs = $stmt->fetchAll(PDO::FETCH_ASSOC);
-$stmt->closeCursor();
-
-$sselid = null;
-$o = 0;
-$out = '';
-
-$feed = '';
-$feed .= '
' .
- '
' . _('publications:: dernieres publications') . '
' .
- '
';
-
-foreach ($rs as $row)
-{
- if ($row['ssel_id'] != $sselid)
- {
- if ($sselid !== null)
- {
-
-
-
- $item .= '' . $out;
- $item .= '
' .
- '';
-
- if ($itemIsOk)
- $feed .= $item;
- }
-
- $itemIsOk = false;
-
- $sselid = $row['ssel_id'];
- $ord = $row['ord'];
- $o = 0;
- $out = '';
- $neverSeen = '';
- $publisher = $row['usr_prenom'] . ' ' . $row['usr_nom'];
- if ($publisher == ' ')
- $publisher = $row['usr_mail'];
- if ($publisher == '')
- $publisher = 'Unreferenced user';
-
- if ($row['id'] != '')
- $neverSeen = _('publications:: publication non lue');
-
- $item = '';
- $item .= '' .
- '
';
-
-
- if (trim(str_replace($RN, '', $row['descript'])) != '')
- {
- $row['descript'] = str_replace($RN, '
', $row['descript']);
- $item .= '' . $row['descript'];
- }
- $item .= '
';
- }
-
-
-
-
-
- $ord = $row['ord'];
- $statOk = true;
- if ($row['public'] == 1 && $row['pub_restrict'] == 1)
- {
- $statOk = false;
-
- try
- {
- $connsbas = connection::getPDOConnection($row['sbas_id']);
-
- $sql = 'SELECT record_id FROM record WHERE ((status ^ ' . $row['mask_xor'] . ') & ' . $row['mask_and'] . ')=0
- AND record_id = :record_id';
- $stmt = $connsbas->prepare($sql);
- $stmt->execute(array(':record_id' => $row['record_id']));
- $statOk = ($stmt->rowCount() > 0);
- $stmt->closeCursor();
- }
- catch (Exception $e)
- {
-
- }
- }
-
-
- $layoutmode = $user->getPrefs('view');
-
- if ($statOk)
- {
- $record = new record_adapter($row["sbas_id"], $row["record_id"]);
- $sbas_id = phrasea::sbasFromBas($row['base_id']);
-
- $captionXML = $record->get_xml();
-
- $thumbnail = $record->get_thumbnail();
-
- $title = $record->get_title();
- $exifinfos = $record->get_technical_infos();
- $caption = $twig->render('common/caption.html', array('view' => 'internal_publi', 'record' => $record));
-
- $o++;
- $itemIsOk = true;
- $bottom = 0;
- $right = 10;
- $left = 0;
- $top = 10;
-
-
- if (trim($preview) != '')
- $preview = "
";
-
- $docType = $record->get_type();
- $isVideo = ($docType == 'video');
- $isAudio = ($docType == 'audio');
- $isImage = ($docType == 'image');
- $isDocument = ($docType == 'document');
-
- $duration = '';
-
- if (!$isVideo && !$isAudio)
- $isImage = true;
-
- if ($isVideo)
- {
- $duration = $record->get_formated_duration();
- if ($duration != '')
- $duration = '
' . $duration . '
';
- }
- if ($isAudio)
- {
- $duration = $record->get_formated_duration();
- if ($duration != '')
- $duration = '
' . $duration . '
';
- }
-
-
- $ratio = $thumbnail->get_width() / $thumbnail->get_height();
-
- if ($ratio > 1)
- {
- $cw = min(((int) $th_size - 30), $thumbnail->get_width());
- $ch = $cw / $ratio;
- $pv = floor(($th_size - $ch) / 2);
- $ph = floor(($th_size - $cw) / 2);
- $imgStyle = 'xwidth:' . $cw . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;';
- }
- else
- {
- $ch = min(((int) $th_size - 30), $thumbnail->get_height());
- $cw = $ch * $ratio;
-
- $pv = floor(($th_size - $ch) / 2);
- $ph = floor(($th_size - $cw) / 2);
-
- $imgStyle = 'xheight:' . $ch . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;';
- }
-
-
-
- $ident = $row["base_id"] . "_" . $row["record_id"];
-
-
- $out .= "
";
-
- $out .= '
';
- $out .= "
";
-
- $out .= $title; //$data['title'];
-
- $out .= "
\n";
-
- $out .= '
';
-
- $out .= "
\n";
-
- $out .= $duration . " get_url() . "\" style=\"" . $imgStyle . "\" />";
-
- $out .= " |
";
-
- $out .= '
';
- $out .= '
';
- $out .= '';
- $out .= '';
-
- $out .= " | \n";
-
- $out .= "\n";
-
- $out .= $preview;
-
- $out .= " | ";
- $out .= "
";
- $out .= "
";
- $out .= "
";
-
-
- $out .= "
";
- }
-}
-
-if (isset($item))
-{
- $item .= '
' . $out;
- $item .= '
' .
- '
';
- if ($itemIsOk)
- $feed .= $item;
-}
-
-echo '' . $feed . '
';
-
-$sql = 'DELETE FROM sselnew WHERE usr_id = :usr_id AND ssel_id IN (SELECT ssel_id FROM ssel WHERE public="1")';
-$stmt = $conn->prepare($sql);
-$stmt->execute(array(':usr_id' => $usr_id));
-$stmt->closeCursor();
+//$Core = \bootstrap::getCore();
+//$appbox = appbox::get_instance($Core);
+//$session = $appbox->get_session();
+//
+//$th_size = $user->getPrefs('images_size');
+//
+//$user = $Core->getAuthenticatedUser();
+//
+//$RN = array("\r\n", "\n", "\r");
+//
+//$conn = $appbox->get_connection();
+//
+//$sql = 'SELECT s.public, s.pub_restrict,c.sselcont_id, c.base_id, sb.*, c.record_id, s.ssel_id, s.name, s.descript, c.ord, ' .
+// 'DATE_FORMAT(s.pub_date,"' . _('phraseanet::technique::datetime') . '") AS pub_date, ' .
+// 'DATE_FORMAT(s.updater,"' . _('phraseanet::technique::date') . '") AS updater, ' .
+// 's.updater as dateC1, s.pub_date as dateC2,' .
+// ' n.id, u.usr_nom, u.usr_prenom, u.usr_login, u.usr_mail ' .
+// ', bu.mask_and ' .
+// ', bu.mask_xor ' .
+// 'FROM (sselcont c, ssel s, usr u, bas b, sbas sb) ' .
+// 'LEFT JOIN sselnew n ' .
+// 'ON (n.ssel_id = s.ssel_id AND n.usr_id = :usr_id) ' .
+// ' LEFT JOIN basusr bu ON (bu.base_id = b.base_id AND bu.usr_id = :usr_id_bis)' .
+// 'WHERE s.ssel_id = c.ssel_id AND s.public="1" ' .
+// 'AND (s.pub_restrict="0" ' .
+// 'OR (s.pub_restrict="1" AND c.base_id IN ' .
+// ' (SELECT base_id FROM basusr WHERE usr_id = :usr_id_sub AND actif = "1")))' .
+// ' AND u.usr_id = s.usr_id AND temporaryType=0 ' .
+// ' AND b.sbas_id = sb.sbas_id' .
+// ' AND b.base_id = c.base_id' .
+// ' ORDER BY s.pub_date DESC, c.ord ASC';
+//
+//$sqlMe = 'SELECT usr_login, usr_password FROM usr WHERE usr_id = :usr_id';
+//
+//$stmt = $conn->prepare($sqlMe);
+//$stmt->execute(array(':usr_id' => $session->get_usr_id()));
+//$rawMe = $stmt->fetch(PDO::FETCH_ASSOC);
+//$stmt->closeCursor();
+//
+//$info_usr = null;
+//
+//if ($rawMe)
+//{
+// $info_usr = $rawMe;
+//}
+//
+//$core = \bootstrap::getCore();
+//$twig = $core->getTwig();
+//
+//$stmt = $conn->prepare($sql);
+//$usr_id = $session->get_usr_id();
+//$stmt->execute(array(':usr_id' => $usr_id, ':usr_id_bis' => $usr_id, ':usr_id_sub' => $usr_id));
+//$rs = $stmt->fetchAll(PDO::FETCH_ASSOC);
+//$stmt->closeCursor();
+//
+//$sselid = null;
+//$o = 0;
+//$out = '';
+//
+//$feed = '';
+//$feed .= '' .
+// '
' . _('publications:: dernieres publications') . '
' .
+// '
';
+//
+//foreach ($rs as $row)
+//{
+// if ($row['ssel_id'] != $sselid)
+// {
+// if ($sselid !== null)
+// {
+//
+//
+//
+// $item .= '' . $out;
+// $item .= '
' .
+// '';
+//
+// if ($itemIsOk)
+// $feed .= $item;
+// }
+//
+// $itemIsOk = false;
+//
+// $sselid = $row['ssel_id'];
+// $ord = $row['ord'];
+// $o = 0;
+// $out = '';
+// $neverSeen = '';
+// $publisher = $row['usr_prenom'] . ' ' . $row['usr_nom'];
+// if ($publisher == ' ')
+// $publisher = $row['usr_mail'];
+// if ($publisher == '')
+// $publisher = 'Unreferenced user';
+//
+// if ($row['id'] != '')
+// $neverSeen = _('publications:: publication non lue');
+//
+// $item = '';
+// $item .= '' .
+// '
';
+//
+//
+// if (trim(str_replace($RN, '', $row['descript'])) != '')
+// {
+// $row['descript'] = str_replace($RN, '
', $row['descript']);
+// $item .= '' . $row['descript'];
+// }
+// $item .= '
';
+// }
+//
+//
+//
+//
+//
+// $ord = $row['ord'];
+// $statOk = true;
+// if ($row['public'] == 1 && $row['pub_restrict'] == 1)
+// {
+// $statOk = false;
+//
+// try
+// {
+// $connsbas = connection::getPDOConnection($row['sbas_id']);
+//
+// $sql = 'SELECT record_id FROM record WHERE ((status ^ ' . $row['mask_xor'] . ') & ' . $row['mask_and'] . ')=0
+// AND record_id = :record_id';
+// $stmt = $connsbas->prepare($sql);
+// $stmt->execute(array(':record_id' => $row['record_id']));
+// $statOk = ($stmt->rowCount() > 0);
+// $stmt->closeCursor();
+// }
+// catch (Exception $e)
+// {
+//
+// }
+// }
+//
+//
+// $layoutmode = $user->getPrefs('view');
+//
+// if ($statOk)
+// {
+// $record = new record_adapter($row["sbas_id"], $row["record_id"]);
+// $sbas_id = phrasea::sbasFromBas($row['base_id']);
+//
+// $captionXML = $record->get_xml();
+//
+// $thumbnail = $record->get_thumbnail();
+//
+// $title = $record->get_title();
+// $exifinfos = $record->get_technical_infos();
+// $caption = $twig->render('common/caption.html', array('view' => 'internal_publi', 'record' => $record));
+//
+// $o++;
+// $itemIsOk = true;
+// $bottom = 0;
+// $right = 10;
+// $left = 0;
+// $top = 10;
+//
+//
+// if (trim($preview) != '')
+// $preview = "
";
+//
+// $docType = $record->get_type();
+// $isVideo = ($docType == 'video');
+// $isAudio = ($docType == 'audio');
+// $isImage = ($docType == 'image');
+// $isDocument = ($docType == 'document');
+//
+// $duration = '';
+//
+// if (!$isVideo && !$isAudio)
+// $isImage = true;
+//
+// if ($isVideo)
+// {
+// $duration = $record->get_formated_duration();
+// if ($duration != '')
+// $duration = '
' . $duration . '
';
+// }
+// if ($isAudio)
+// {
+// $duration = $record->get_formated_duration();
+// if ($duration != '')
+// $duration = '
' . $duration . '
';
+// }
+//
+//
+// $ratio = $thumbnail->get_width() / $thumbnail->get_height();
+//
+// if ($ratio > 1)
+// {
+// $cw = min(((int) $th_size - 30), $thumbnail->get_width());
+// $ch = $cw / $ratio;
+// $pv = floor(($th_size - $ch) / 2);
+// $ph = floor(($th_size - $cw) / 2);
+// $imgStyle = 'xwidth:' . $cw . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;';
+// }
+// else
+// {
+// $ch = min(((int) $th_size - 30), $thumbnail->get_height());
+// $cw = $ch * $ratio;
+//
+// $pv = floor(($th_size - $ch) / 2);
+// $ph = floor(($th_size - $cw) / 2);
+//
+// $imgStyle = 'xheight:' . $ch . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;';
+// }
+//
+//
+//
+// $ident = $row["base_id"] . "_" . $row["record_id"];
+//
+//
+// $out .= "
";
+//
+// $out .= '
';
+// $out .= "
";
+//
+// $out .= $title; //$data['title'];
+//
+// $out .= "
\n";
+//
+// $out .= '
';
+//
+// $out .= "
\n";
+//
+// $out .= $duration . " get_url() . "\" style=\"" . $imgStyle . "\" />";
+//
+// $out .= " |
";
+//
+// $out .= '
';
+// $out .= '
';
+// $out .= '';
+// $out .= '';
+//
+// $out .= " | \n";
+//
+// $out .= "\n";
+//
+// $out .= $preview;
+//
+// $out .= " | ";
+// $out .= "
";
+// $out .= "
";
+// $out .= "
";
+//
+//
+// $out .= "
";
+// }
+//}
+//
+//if (isset($item))
+//{
+// $item .= '
' . $out;
+// $item .= '
' .
+// '
';
+// if ($itemIsOk)
+// $feed .= $item;
+//}
+//
+//echo '' . $feed . '
';
+//
+//$sql = 'DELETE FROM sselnew WHERE usr_id = :usr_id AND ssel_id IN (SELECT ssel_id FROM ssel WHERE public="1")';
+//$stmt = $conn->prepare($sql);
+//$stmt->execute(array(':usr_id' => $usr_id));
+//$stmt->closeCursor();