@@ -510,24 +510,24 @@ |
||
510 | 510 | switch ($type) { |
511 | 511 | case Circle::CIRCLES_PERSONAL: |
512 | 512 | return $urlGen->getAbsoluteURL( |
513 | - $urlGen->imagePath(Application::APP_NAME, 'personal' . $ext) |
|
513 | + $urlGen->imagePath(Application::APP_NAME, 'personal'.$ext) |
|
514 | 514 | ); |
515 | 515 | case Circle::CIRCLES_CLOSED: |
516 | 516 | return $urlGen->getAbsoluteURL( |
517 | - $urlGen->imagePath(Application::APP_NAME, 'closed' . $ext) |
|
517 | + $urlGen->imagePath(Application::APP_NAME, 'closed'.$ext) |
|
518 | 518 | ); |
519 | 519 | case Circle::CIRCLES_SECRET: |
520 | 520 | return $urlGen->getAbsoluteURL( |
521 | - $urlGen->imagePath(Application::APP_NAME, 'secret' . $ext) |
|
521 | + $urlGen->imagePath(Application::APP_NAME, 'secret'.$ext) |
|
522 | 522 | ); |
523 | 523 | case Circle::CIRCLES_PUBLIC: |
524 | 524 | return $urlGen->getAbsoluteURL( |
525 | - $urlGen->imagePath(Application::APP_NAME, 'black_circle' . $ext) |
|
525 | + $urlGen->imagePath(Application::APP_NAME, 'black_circle'.$ext) |
|
526 | 526 | ); |
527 | 527 | } |
528 | 528 | |
529 | 529 | return $urlGen->getAbsoluteURL( |
530 | - $urlGen->imagePath(Application::APP_NAME, 'black_circle' . $ext) |
|
530 | + $urlGen->imagePath(Application::APP_NAME, 'black_circle'.$ext) |
|
531 | 531 | ); |
532 | 532 | } |
533 | 533 |