mirror of
https://github.com/itflow-org/itflow
synced 2026-03-09 15:24:51 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ea41c6ae5 | ||
|
|
c40d15a545 | ||
|
|
4c966f19e5 | ||
|
|
73d0cb7497 | ||
|
|
ef06c4141f |
@@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
This file documents all notable changes made to ITFlow.
|
This file documents all notable changes made to ITFlow.
|
||||||
|
|
||||||
|
## [25.01.3]
|
||||||
|
### Fixed
|
||||||
|
- Fixed ticket assignment modal showing client contacts.
|
||||||
|
|
||||||
## [25.01.2]
|
## [25.01.2]
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed app version.
|
- Fixed app version.
|
||||||
|
|||||||
@@ -22,6 +22,7 @@
|
|||||||
<script src='../plugins/select2/js/select2.min.js'></script>
|
<script src='../plugins/select2/js/select2.min.js'></script>
|
||||||
<script src='../plugins/inputmask/inputmask.min.js'></script>
|
<script src='../plugins/inputmask/inputmask.min.js'></script>
|
||||||
<script src="../js/app.js"></script>
|
<script src="../js/app.js"></script>
|
||||||
|
<script src="../js/pretty_content.js"></script>
|
||||||
<script src="../js/confirm_modal.js"></script>
|
<script src="../js/confirm_modal.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ if ($item_type == "Document") {
|
|||||||
$doc_content = $purifier->purify($doc_row['document_content']);
|
$doc_content = $purifier->purify($doc_row['document_content']);
|
||||||
|
|
||||||
echo "<h3>$doc_title</h3>";
|
echo "<h3>$doc_title</h3>";
|
||||||
echo $doc_content;
|
echo "<div class='prettyContent'>$doc_content</div>";
|
||||||
|
|
||||||
// Update document view count
|
// Update document view count
|
||||||
$new_item_views = $item_views + 1;
|
$new_item_views = $item_views + 1;
|
||||||
|
|||||||
@@ -5,4 +5,4 @@
|
|||||||
* Update this file each time we merge develop into master. Format is YY.MM (add a .v if there is more than one release a month.
|
* Update this file each time we merge develop into master. Format is YY.MM (add a .v if there is more than one release a month.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
DEFINE("APP_VERSION", "25.01.2");
|
DEFINE("APP_VERSION", "25.01.3");
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<?php
|
<?php
|
||||||
$sql_users_select = mysqli_query($mysqli, "SELECT users.user_id, user_name FROM users
|
$sql_users_select = mysqli_query($mysqli, "SELECT users.user_id, user_name FROM users
|
||||||
LEFT JOIN user_settings on users.user_id = user_settings.user_id
|
LEFT JOIN user_settings on users.user_id = user_settings.user_id
|
||||||
AND user_type = 1
|
WHERE user_type = 1
|
||||||
AND user_archived_at IS NULL
|
AND user_archived_at IS NULL
|
||||||
ORDER BY user_name DESC"
|
ORDER BY user_name DESC"
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user