]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/commitdiff
Don't wrap "Created"
authorBram Matthys <redacted>
Sun, 16 Apr 2023 16:36:03 +0000 (18:36 +0200)
committerBram Matthys <redacted>
Sun, 16 Apr 2023 16:36:23 +0000 (18:36 +0200)
Note to self: why am i using style here instead of proper CSS in the .css?

channels/index.php

index 63ddc7e2cd9633dde62349ccb5f6366d4e738d31..af8637c89fd0fd83205ade07de3e00056ef4687a 100644 (file)
@@ -39,7 +39,7 @@ $channels = $rpc->channel()->getAll();
                        $topic = (isset($channel->topic)) ? htmlspecialchars($channel->topic) : "";
                        echo "<td class=\"topiccol\" style=\"overflow:hidden;\">".$topic."</td>";
                        $date = explode("T", $channel->creation_time)[0];
-                       echo "<td class=\"createdcol\">".
+                       echo "<td class=\"createdcol\" style=\"white-space:nowrap\">".
                             "<span data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"".$channel->creation_time."\">".
                             "$date</td>";
                        echo "</tr>";