alsmanager_lib 2.0.36 → 2.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/modules.js +1 -1
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -7919,7 +7919,7 @@ function queryFloorsByPlaceSQLite(id_place) {
|
|
|
7919
7919
|
|
|
7920
7920
|
function queryFloorsByPlaceMySQL(id_place) {
|
|
7921
7921
|
var query = "SELECT DISTINCT floor from sites ";
|
|
7922
|
-
query += "where id_place =
|
|
7922
|
+
query += "where id_place = :id_place";
|
|
7923
7923
|
query += " order by floor";
|
|
7924
7924
|
return query;
|
|
7925
7925
|
}
|