mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 09:01:15 -04:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7ebb4b009 | ||
|
|
c0cef8dd12 | ||
|
|
dcdd97a985 | ||
|
|
1326c4e71e | ||
|
|
9cbbc80f7a |
@@ -1,3 +1,9 @@
|
||||
Hubzilla 3.8.1 (2018-10-21)
|
||||
- Fix issue with too long navbar banners
|
||||
- Fix menu item edit link
|
||||
- Fix issue with jquery file upload
|
||||
|
||||
|
||||
Hubzilla 3.8 (2018-10-19)
|
||||
- Re-implement basic build test via gitlab-ci
|
||||
- Rework wiki encoding/decoding
|
||||
|
||||
@@ -213,7 +213,7 @@ class Menu extends \Zotlabs\Web\Controller {
|
||||
'$header' => t('Edit Menu'),
|
||||
'$sys' => \App::$is_sys,
|
||||
'$menu_id' => intval(argv(2)),
|
||||
'$menu_edit_link' => 'mitem/' . $which . '/' . intval(argv(1)) . ((\App::$is_sys) ? '?f=&sys=1' : ''),
|
||||
'$menu_edit_link' => 'mitem/' . $which . '/' . intval(argv(2)) . ((\App::$is_sys) ? '?f=&sys=1' : ''),
|
||||
'$hintedit' => t('Add or remove entries to this menu'),
|
||||
'$editcontents' => t('Edit menu contents'),
|
||||
'$menu_name' => array('menu_name', t('Menu name'), $m['menu_name'], t('Must be unique, only seen by you'), '*'),
|
||||
|
||||
2
boot.php
2
boot.php
@@ -50,7 +50,7 @@ require_once('include/attach.php');
|
||||
require_once('include/bbcode.php');
|
||||
|
||||
define ( 'PLATFORM_NAME', 'hubzilla' );
|
||||
define ( 'STD_VERSION', '3.8' );
|
||||
define ( 'STD_VERSION', '3.8.1' );
|
||||
define ( 'ZOT_REVISION', '6.0a' );
|
||||
|
||||
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* jQuery File Upload Plugin PHP Example
|
||||
* https://github.com/blueimp/jQuery-File-Upload
|
||||
*
|
||||
* Copyright 2010, Sebastian Tschan
|
||||
* https://blueimp.net
|
||||
*
|
||||
* Licensed under the MIT license:
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
require('UploadHandler.php');
|
||||
$upload_handler = new UploadHandler();
|
||||
5
view/css/bootstrap-red.css
vendored
5
view/css/bootstrap-red.css
vendored
@@ -43,6 +43,11 @@ nav .dropdown-menu {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* this fixes ellipsis for too long nav banner */
|
||||
#navbar-collapse-1 {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#navbar-collapse-1 i {
|
||||
font-size: 1.0rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user