diff options
author | friendica <info@friendica.com> | 2012-03-13 18:13:03 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-13 18:13:03 -0700 |
commit | be48fff1570aa1d04e049a6fd1665f4fc9634a62 (patch) | |
tree | 27b3a9afc78391ece8bfd2ce13ac74b77bc18898 /include/text.php | |
parent | 8a789a33d1168359ae23300bc3169b37fb02facc (diff) | |
download | volse-hubzilla-be48fff1570aa1d04e049a6fd1665f4fc9634a62.tar.gz volse-hubzilla-be48fff1570aa1d04e049a6fd1665f4fc9634a62.tar.bz2 volse-hubzilla-be48fff1570aa1d04e049a6fd1665f4fc9634a62.zip |
file as widget and basic filing implementation for duepuntozero,slackr
much more work needed - this is just for test/evaluation currently
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 2663bdeba..c44b4d178 100644 --- a/include/text.php +++ b/include/text.php @@ -1294,7 +1294,7 @@ function file_tag_save_file($uid,$item,$file) { if(count($r)) { if(! stristr($r[0]['file'],'[' . file_tag_encode($file) . ']')) q("update item set file = '%s' where id = %d and uid = %d limit 1", - dbesc($r[0]['file'] . '[' . $file_tag_encode($file) . ']'), + dbesc($r[0]['file'] . '[' . file_tag_encode($file) . ']'), intval($item), intval($uid) ); |