Fixed some compile errors in relation to the adding of config fields to target a view menu relationship. Changed the notice area to give little reminder when new notice are sent.

This commit is contained in:
2016-10-31 23:47:21 +02:00
parent e63441531b
commit 07f9344265
375 changed files with 583 additions and 380 deletions

View File

@@ -59,7 +59,7 @@ class ###Component###ControllerDownload extends JControllerLegacy
$name = ###Component###Helper::safeString($filename, 'Ww');
// Get local key
$localkey = ###Component###Helper::getLocalKey();
$opener = new FOFEncryptAes($localkey, 256);
$opener = new FOFEncryptAes($localkey, 128);
$link = rtrim($opener->decryptString(base64_decode($enUrl)));
$info = $this->getContentInfo($link);
// set headers

View File

@@ -3,7 +3,7 @@
Vast Development Method
/-------------------------------------------------------------------------------------------------------/
@version 1.0.0 - 01st July, 2015
@version 1.0.0 - 01st July, 2015
@package Dropbox Links builder
@subpackage dropboxlinks.php
@author Llewellyn van der Merwe <http://www.vdm.io>

View File

@@ -375,7 +375,7 @@ class Dropboxupdater
if (###Component###Helper::checkArray($this->listing))
{
// encrypt the urls
$locker = new FOFEncryptAes($this->localkey, 256);
$locker = new FOFEncryptAes($this->localkey, 128);
foreach ($this->listing as $folder => $link)
{
$storeage[$folder] = base64_encode($locker->encryptString($link));