Skip to content

Commit

Permalink
Merge branch 'main' into fix/prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
elsongabriel authored Sep 3, 2024
2 parents d596642 + 3e23cb0 commit 25feb46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
'database_log' => false, // should database queries be logged and and saved into system/logs/database.log?
'database_socket' => '', // set if you want to connect to database through socket (example: /var/run/mysqld/mysqld.sock)
'database_persistent' => false, // use database permanent connection (like server), may speed up your site
'database_encryption' => 'sha1',

// multiworld system (only TFS 0.3)
'multiworld' => false, // use multiworld system?
Expand Down
1 change: 1 addition & 0 deletions system/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
try {
$ots->connect([
'host' => $config['database_host'],
'port' => $config['database_port'],
'user' => $config['database_user'],
'password' => $config['database_password'],
'database' => $config['database_name'],
Expand Down
2 changes: 1 addition & 1 deletion system/templates/forum.show_thread.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<div class="PostBody">
<div class="PostSeparatorV"></div>
<div class="PostUpper">
<div class="PostCharacterText"><b>{{ author_link|raw }}</b><br>
<div class="PostCharacterText"><b>{{ post.player_link|raw }}</b><br>
{% if post.outfit is defined %}
<img
style="margin-left:{% if post.player.getLookType() in [75, 266, 302] %}-0px;margin-top:-0px;width:64px;height:64px;{% else %}-60px;margin-top:-60px;width:128px;height:128px;{% endif %}"
Expand Down

0 comments on commit 25feb46

Please sign in to comment.