Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion application/views/scripts/error/error.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $modReason = [];

if (isset($requiredVendor, $requiredProject) && $requiredVendor && $requiredProject) {
// TODO: I don't like this, can we define requirements somewhere else?
$coreDeps = ['icinga-php-library' => '>= 0.14.2', 'icinga-php-thirdparty' => '>= 0.12'];
$coreDeps = ['icinga-php-library' => '>= 0.18.0', 'icinga-php-thirdparty' => '>= 0.12'];

foreach ($coreDeps as $libraryName => $requiredVersion) {
if (! $libraries->has($libraryName)) {
Expand Down
2 changes: 1 addition & 1 deletion doc/02-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ You will need to install certain dependencies depending on your setup:
monitor your infrastructure
* A web server, e.g. Apache or Nginx
* PHP version ≥ 7.2
* [Icinga PHP Library (ipl)](https://github.com/Icinga/icinga-php-library) (≥ 0.14.2)
* [Icinga PHP Library (ipl)](https://github.com/Icinga/icinga-php-library) (≥ 0.18.0)
* [Icinga PHP Thirdparty](https://github.com/Icinga/icinga-php-thirdparty) (≥ 0.12)
* The following PHP modules must be installed: cURL, json, gettext, fileinfo, intl, dom, OpenSSL and xml
* The [pdfexport](https://github.com/Icinga/icingaweb2-module-pdfexport) module (≥0.10) is required for the
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/library/Setup/WebWizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ public function getRequirements($skipModules = false)
)));

$set->add(new WebLibraryRequirement(array(
'condition' => ['icinga-php-library', '>=', '0.14.2'],
'condition' => ['icinga-php-library', '>=', '0.18.0'],
'alias' => 'Icinga PHP library',
'description' => mt(
'setup',
Expand Down
20 changes: 0 additions & 20 deletions public/css/icinga/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
// Width for the name column--th--of name-value-table
@name-value-table-name-width: 38/3em;

.action-link {
color: @icinga-blue;
}

.error-message {
font-weight: @font-weight-bold;
}
Expand Down Expand Up @@ -126,22 +122,6 @@ a:hover > .icon-cancel {
.fg-stateful();
}

// Link styles

.button-link {
.action-link();
.rounded-corners(3px);

background: @low-sat-blue;
display: inline-block;
padding: 0.25em 0.5em;

&:hover {
background: @low-sat-blue-dark;
text-decoration: none;
}
}

// List styles

.comment-list {
Expand Down
7 changes: 0 additions & 7 deletions public/css/icinga/mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,6 @@
transform: @transform;
}

.user-select(@user-select) {
-webkit-user-select: @user-select;
-moz-user-select: @user-select;
-ms-user-select: @user-select;
user-select: @user-select;
}

.transition (@transition) {
-webkit-transition: @transition;
-moz-transition: @transition;
Expand Down
Loading