summaryrefslogtreecommitdiff
path: root/includes/pages/user_news.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-09-08 14:45:41 +0200
committerPhilip Häusler <msquare@notrademark.de>2014-09-08 14:45:41 +0200
commit46575d90c276bbf10d28d19900790c454dbe96ff (patch)
treed39a3b33d611b8c165c24e8a245a535801ee50dd /includes/pages/user_news.php
parent8a0bd3d55cb0a012056a13ab8e4158a69ccb4764 (diff)
pulled complete menu to the top (go for mobile...)
Diffstat (limited to 'includes/pages/user_news.php')
-rw-r--r--includes/pages/user_news.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/pages/user_news.php b/includes/pages/user_news.php
index c4d243f4..c049f70e 100644
--- a/includes/pages/user_news.php
+++ b/includes/pages/user_news.php
@@ -14,7 +14,7 @@ function meetings_title() {
function user_meetings() {
global $DISPLAY_NEWS, $privileges, $user;
- $html = '<div class="col-md-10"><h1>' . meetings_title() . '</h1>' . msg();
+ $html = '<div class="col-md-12"><h1>' . meetings_title() . '</h1>' . msg();
if (isset($_REQUEST['page']) && preg_match("/^[0-9]{1,}$/", $_REQUEST['page']))
$page = $_REQUEST['page'];
@@ -72,7 +72,7 @@ function display_news($news) {
function user_news_comments() {
global $user;
- $html = '<div class="col-md-10"><h1>' . user_news_comments_title() . '</h1>';
+ $html = '<div class="col-md-12"><h1>' . user_news_comments_title() . '</h1>';
if (isset($_REQUEST["nid"]) && preg_match("/^[0-9]{1,}$/", $_REQUEST['nid']) && sql_num_query("SELECT * FROM `News` WHERE `ID`=" . sql_escape($_REQUEST['nid']) . " LIMIT 1") > 0) {
$nid = $_REQUEST["nid"];
list($news) = sql_select("SELECT * FROM `News` WHERE `ID`=" . sql_escape($nid) . " LIMIT 1");
@@ -116,7 +116,7 @@ function user_news_comments() {
function user_news() {
global $DISPLAY_NEWS, $privileges, $user;
- $html = '<div class="col-md-10"><h1>' . news_title() . '</h1>' . msg();
+ $html = '<div class="col-md-12"><h1>' . news_title() . '</h1>' . msg();
if (isset($_POST["text"]) && isset($_POST["betreff"]) && in_array("admin_news", $privileges)) {
if (! isset($_POST["treffen"]) || ! in_array("admin_news", $privileges))