diff options
author | friendica <info@friendica.com> | 2014-01-08 14:11:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-08 14:11:39 -0800 |
commit | 29db2369811ba35515d285491ce089d937ed8d29 (patch) | |
tree | 961e460561b94f9a16c7fda4de965ec983649684 /include/bbcode.php | |
parent | 73102f0c261be1ca54bf454264ea85fa266bfab8 (diff) | |
download | volse-hubzilla-29db2369811ba35515d285491ce089d937ed8d29.tar.gz volse-hubzilla-29db2369811ba35515d285491ce089d937ed8d29.tar.bz2 volse-hubzilla-29db2369811ba35515d285491ce089d937ed8d29.zip |
qr enhancements
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 35ce2b918..dfb0b9fb8 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -133,7 +133,7 @@ function bb_parse_crypt($match) { } function bb_qr($match) { - return '<img class="zrl" src="' . z_root() . '/photo/qr?f=&qr=' . urlencode($match[1]) . '" alt="' . t('QR code') . '" />'; + return '<img class="zrl" src="' . z_root() . '/photo/qr?f=&qr=' . urlencode($match[1]) . '" alt="' . t('QR code') . '" title="' . urlencode($match[1]) . '" />'; } |