Skip to content

Commit

Permalink
Patch some new features
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitkeremoktay committed Nov 27, 2020
1 parent 0c8d88d commit 890f790
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions skymake-platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ function loadWebMeeting(){
<img class="card-img-top" src="https://theskyfallen.company/wp-content/uploads/2020/07/IMG_0183.png" alt="SFLogo">
<div class="card-body">
<h1 class="card-title">SkyMake 4 by Skyfallen</h1>
<h6 class="card-title">Version 4.3 Aegaeus</h6>
<h6 class="card-title">Version 4.4 Accelia</h6>
<h5><a href="/updates" class="btn btn-danger"><?php echo _("Check for Updates"); ?></a></h5>
<h5 class="card-text">&copy; 2016-2020 The Skyfallen Company | &copy; 2018-2020 The SkyMake Project <br>
This application is subject to Skyfallen Open Source Licence and Skyfallen Privacy.</h5>
Expand Down Expand Up @@ -962,7 +962,7 @@ function loadWebMeeting(){
if($result = mysqli_query($link,$sql)){
if (mysqli_num_rows($result) > 0) {
while ($row = mysqli_fetch_array($result)) {
if(SMUser::getRole($link,$row["username"]) == "teacher") {
if(SMUser::getRole($link,$row["username"]) == "teacher" or SMUser::getRole($link,$row["username"]) == "moderator") {
echo "<option>" . $row["username"] . "</option>";
}
}
Expand Down Expand Up @@ -1722,7 +1722,7 @@ function loadWebMeeting(){
if($result = mysqli_query($link,$sql)){
if (mysqli_num_rows($result) > 0) {
while ($row = mysqli_fetch_array($result)) {
if(SMUser::getRole($link,$row["username"]) == "teacher") {
if(SMUser::getRole($link,$row["username"]) == "teacher" or SMUser::getRole($link,$row["username"]) == "moderator") {
echo "<option>" . $row["username"] . "</option>";
}
}
Expand Down
2 changes: 1 addition & 1 deletion thisversion.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
define("THIS_VERSION","SFR-204532");
define("THIS_VERSION","SFR-204533");
define("VERSION_PROVIDER","Skyfallen Software Distribution");

0 comments on commit 890f790

Please sign in to comment.