Changeset 1482
- Timestamp:
- 09/23/09 17:21:03 (14 years ago)
- Location:
- plugins/dcQRcode
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcQRcode/_define.php
r1429 r1482 17 17 /* Description*/ "Use QR code on your blog", 18 18 /* Author */ "JC Denis", 19 /* Version */ '0. 3',19 /* Version */ '0.4', 20 20 /* Permissions */ 'admin' 21 21 ); 22 /* date */ #200909 0822 /* date */ #20090923 23 23 ?> -
plugins/dcQRcode/_public.php
r1429 r1482 31 31 if (!$core->blog->settings->qrc_active) { 32 32 self::p404(); 33 exit;33 return; 34 34 } 35 35 36 36 if (!preg_match('#^(.*?)\.png$#',$args,$m)) { 37 37 self::p404(); 38 exit;38 return; 39 39 } 40 40 41 41 if (empty($m[1])) { 42 42 self::p404(); 43 exit;43 return; 44 44 } 45 45 … … 51 51 { 52 52 self::p404(); 53 exit;53 return; 54 54 } 55 55 56 56 if (null === $qrc->decode($m[1])) { 57 57 self::p404(); 58 exit;58 return; 59 59 } 60 60 61 61 $qrc->getImage(); 62 exit;62 return; 63 63 } 64 64 -
plugins/dcQRcode/release.txt
r1429 r1482 1 0.3 200909 082 * Big update1 0.3 20090923 2 * Fixed DC 2.1.6 URL handlers ending 3 3 4 4 0.2 20090907
Note: See TracChangeset
for help on using the changeset viewer.