Skip to content

Commit

Permalink
fatal bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias authored and tobias committed Jun 5, 2019
1 parent af387ae commit e058500
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion install.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
. "'', '[]', 'before', UNIX_TIMESTAMP(), '". rex::getUser()->getValue('login') ."', UNIX_TIMESTAMP(), '". rex::getUser()->getValue('login') ."');");
}

d2u_addon_backend_helper::generateUrlCache();
\d2u_addon_backend_helper::generateUrlCache();
}

// Media Manager media types
Expand Down
2 changes: 1 addition & 1 deletion lib/category.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public function save() {
}

// Update URLs
d2u_addon_backend_helper::generateUrlCache();
\d2u_addon_backend_helper::generateUrlCache();

return $error;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/job.php
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ public function save() {
}

// Update URLs
d2u_addon_backend_helper::generateUrlCache();
\d2u_addon_backend_helper::generateUrlCache();

return $error;
}
Expand Down
2 changes: 1 addition & 1 deletion pages/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
if(\rex_addon::get('url')->isAvailable()) {
d2u_addon_backend_helper::update_url_scheme(rex::getTablePrefix() ."d2u_jobs_url_jobs", $settings['article_id']);
d2u_addon_backend_helper::update_url_scheme(rex::getTablePrefix() ."d2u_jobs_url_jobs_categories", $settings['article_id']);
d2u_addon_backend_helper::generateUrlCache();
\d2u_addon_backend_helper::generateUrlCache();
}

// Install / update language replacements
Expand Down
4 changes: 2 additions & 2 deletions pages/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@
<p>Fehlermeldungen bitte im Git Projekt unter
<a href="https://github.com/TobiasKrais/d2u_jobs/issues" target="_blank">https://github.com/TobiasKrais/d2u_jobs/issues</a> melden.</p>
<h2>Changelog</h2>
<p>1.0.9-DEV:</p>
<p>1.0.9:</p>
<ul>
<li>...</li>
<li>Bugfix: Fatal error beim Speichern verursacht durch die URL Addon Version 2 Anpassungen behoben.</li>
</ul>
<p>1.0.8:</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion update.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
. "'', '[]', 'before', UNIX_TIMESTAMP(), '". rex::getUser()->getValue('login') ."', UNIX_TIMESTAMP(), '". rex::getUser()->getValue('login') ."');");
}

d2u_addon_backend_helper::generateUrlCache();
\d2u_addon_backend_helper::generateUrlCache();
}

// Media Manager media types
Expand Down

0 comments on commit e058500

Please sign in to comment.