Fix the display of long words in the alliance

Now the long words in the alliance description are not hidden but are transferred to a new line
This commit is contained in:
Vladyslav
2018-06-17 15:13:34 +03:00
parent 7fde3e5ec2
commit 56c729a211
+4 -2
View File
@@ -106,12 +106,14 @@ include("alli_menu.tpl");
</tr> </tr>
<?php } ?> <?php } ?>
<tr> <tr>
<td class="desc2" colspan="2"><?php echo stripslashes(nl2br($profiel[0])); ?> <td class="desc2" colspan="2">
<div class="desc2div"><?php echo stripslashes(nl2br($profiel[0])); ?></div>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
<td class="desc1"><?php echo stripslashes(nl2br($profiel[1])); ?> <td class="desc1">
<div class="desc1div"><?php echo stripslashes(nl2br($profiel[1])); ?></div>
</td> </td>
</tr> </tr>
</tbody> </tbody>