MISP (core software) - Open Source Threat Intelligence and Sharing Platform (formely known as Malware Information Sharing Platform) https://www.misp-project.org/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
417 B

  1. --- app/View/Helper/AppHelper.php.orig 2012-09-20 15:32:09.844653514 +0200
  2. +++ app/View/Helper/AppHelper.php 2012-09-06 13:45:12.791544951 +0200
  3. @@ -31,4 +31,11 @@
  4. * @package app.View.Helper
  5. */
  6. class AppHelper extends Helper {
  7. +
  8. + public function url($url = null, $full = false) {
  9. + if (is_array($url) && !isset($url['admin'])) {
  10. + $url['admin'] = false;
  11. + }
  12. + return parent::url($url, $full);
  13. + }
  14. }