Skip to content

Commit

Permalink
* [BUG] Fixed error on saving search filters in session.
Browse files Browse the repository at this point in the history
* [BUG] Fixed error on resetting search filters.
* [MOD] On account history view the date select is now visible for selecting another date.
* [MOD] Removed scroll bar on search results.
* [MOD] Better visibility on options activation buttons in users and profiles.
* [MOD] Improvement on searching for updates.
  • Loading branch information
nuxsmin committed Nov 12, 2013
1 parent 13b8dc2 commit ab69f1c
Show file tree
Hide file tree
Showing 12 changed files with 352 additions and 324 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/config/config.php
/nbproject/
/res/
/backup/
/backup/
/patches/
18 changes: 18 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
=== ** v1.0.3 ** ===

* [BUG] Corregido fallo al guardar filtro de búsqueda en la sesión.
* [BUG] Corregido fallo al resetear campos de búsqueda.
* [MOD] En el historial de una cuenta se muestra el desplegable para seleccionar otra fecha.
* [MOD] Eliminada barra de scroll en resultado de búsqueda.
* [MOD] Mejor visibilidad en botones de activación de opciones de usuarios y perfiles.
* [MOD] Mejora en búsqueda de actualizaciones.

=== ** v1.0.2 ** ===

* [BUG] Corregido el resultado de la búsqueda con registros "duplicados" para las cuentas con varios grupos secundarios.
Expand Down Expand Up @@ -138,6 +147,15 @@

---

=== ** v1.0.3 ** ===

* [BUG] Fixed error on saving search filters in session.
* [BUG] Fixed error on resetting search filters.
* [MOD] On account history view the date select is now visible for selecting another date.
* [MOD] Removed scroll bar on search results.
* [MOD] Better visibility on options activation buttons in users and profiles.
* [MOD] Improvement on searching for updates.

=== ** v1.0.2 ** ===

* [BUG] Fixed "duplicated" records on search results for accounts that have secondary groups.
Expand Down
1 change: 1 addition & 0 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Cambiar el propietario del directorio 'sysPass/config'.
Ha de coincidir con el usuario del servidor web:

# chown www-data /var/www/sysPass/config
# chmod 750 /var/www/sysPass/config

Cambiar el propietario del directorio 'sysPass/backup':

Expand Down
2 changes: 1 addition & 1 deletion ajax/ajax_getcontent.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,6 @@
// Se comprueba si hay actualizaciones.
// Es necesario que se haga al final de obtener el contenido ya que la
// consulta ajax detiene al resto si se ejecuta antes
if ( $_SESSION['uisadminapp'] && SP_Config::getValue('checkupdates') === 1 ){
if ( $_SESSION['uisadminapp'] && SP_Config::getValue('checkupdates') === 1 && ! $_SESSION["UPDATED"] ){
echo '<script>checkUpds();</script>';
}
Binary file added css/smoothness/images/ui-bg_glass_75_ON_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 13 additions & 4 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,9 @@ A:focus {text-decoration: none; color: #FF0000;}
#container #content {
float: left;
width: 85%;
min-height: 600px;
min-height: 500px;
margin: 50px auto;
margin-bottom: 80px;
}

#content TD.descField, #fancyContainer TD.descField{
Expand All @@ -238,10 +239,10 @@ A:focus {text-decoration: none; color: #FF0000;}

#content #resBuscar{ width: 100%; margin-top: 20px;}
#content #resBuscar IMG {vertical-align:middle;}
#content #resBuscar #data-search,
/*#content #resBuscar #data-search,
#content .data-rows,
#content #resEventLog #resSearch
{overflow-y: auto; max-height: 400px}
{overflow-y: auto; max-height: 400px}*/

#content #pageNav {
float: left;
Expand Down Expand Up @@ -620,7 +621,8 @@ A:focus {text-decoration: none; color: #FF0000;}

.hide{display: none !important;}

.btnChecks .ui-button{width: 150px; margin: 5px !important; }
.btnChecks {border-bottom: 1px solid #c9c9c9; padding-bottom: 10px;}
.btnChecks .ui-button{width: 150px; margin: 5px !important;}

.shadow{
box-shadow: 3px 3px 6px -3px #d9d9d9;
Expand Down Expand Up @@ -698,6 +700,13 @@ A:focus {text-decoration: none; color: #FF0000;}

.ui-autocomplete, .ui-menu-item{z-index: 8050;} /* Fix for fancybox z-index*/

.ui-buttonset .ui-state-active{
background: url("smoothness/images/ui-bg_glass_75_ON_1x400.png") repeat-x scroll 50% 50% #ecfde4;
border: 1px solid #AAAAAA;
color: #212121;
font-weight: normal;
}

#passLevel { margin-left: 10px; padding: 3px 15px;}
#passLevel.strongest, #passLevel.strongest:hover { background-color: #ecfde4 !important; color: green; font-weight: bold; border: #dbfdcb 1px solid;}
#passLevel.strong, #passLevel.strong:hover { background-color: #E6F2FF !important; color: #64b4f4; font-weight: bold; border: #64b4f4 1px solid;}
Expand Down
2 changes: 2 additions & 0 deletions inc/account.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ public function getAccounts($searchFilter){
$_SESSION["accountSearchCategory"] = $searchFilter["categoryId"];
$_SESSION["accountSearchOrder"] = $searchFilter["txtOrder"];
$_SESSION["accountSearchKey"] = $searchFilter["keyId"];
$_SESSION["accountSearchStart"] = $searchFilter["limitStart"];
$_SESSION["accountSearchLimit"] = $searchFilter["limitCount"];

return $queryRes;
}
Expand Down
Loading

0 comments on commit ab69f1c

Please sign in to comment.