Changeset 1319
- Timestamp:
- 03/06/11 11:27:45 (2 years ago)
- Location:
- Files:
-
- 9 added
- 1 removed
- 2 modified
-
files/acp/check_facebook.php (added)
-
files/acp/update_facebook.php (modified) (1 diff)
-
optionals (added)
-
optionals/de.easy-coding.wbb.login (added)
-
optionals/de.easy-coding.wbb.login/de.xml (added)
-
optionals/de.easy-coding.wbb.login/en.xml (added)
-
optionals/de.easy-coding.wbb.login/options.xml (added)
-
optionals/de.easy-coding.wbb.login/package.xml (added)
-
optionals/de.easy-coding.wbb.login/templates.diff (added)
-
package.xml (modified) (4 diffs)
-
templates.diff (deleted)
-
templates113.diff (added)
Legend:
- Unmodified
- Added
- Removed
-
facebook/files/acp/update_facebook.php
r1318 r1319 5 5 * @license GNU General Public License <http://opensource.org/licenses/gpl-3.0.html> 6 6 */ 7 if (!function_exists('curl_init')) { 8 throw new SystemException('Facebook needs the CURL PHP extension.'); 9 } 10 if (!function_exists('json_decode')) { 11 throw new SystemException('Facebook needs the JSON PHP extension.');12 } 7 8 // update package name 9 $sql = "UPDATE wcf".WCF_N."_package 10 SET package = 'de.easy-coding.wcf.facebook' 11 WHERE package = 'org.gnex.facebook.auth'"; 12 WCF::getDB()->sendQuery($sql); 13 13 14 14 // try to delete this file -
facebook/package.xml
r1318 r1319 2 2 <!DOCTYPE package SYSTEM "http://www.woltlab.com/DTDs/package.dtd"> 3 3 <package name="org.gnex.facebook.auth"> 4 <!-- will be changed to de.easy-coding.wcf.facebook --> 4 5 <packageInformation> 5 6 <packagename><![CDATA[Facebook]]></packagename> 6 7 <packagedescription language="de"><![CDATA[Dieses Plugin verbindet Facebook mit dem WCF. So ist z.B. ein Direktlogin via Facebook möglich.]]></packagedescription> 7 8 <packagedescription><![CDATA[This enables all users to login with their facebook account.]]></packagedescription> 8 <version>2.1. 0</version>9 <version>2.1.1</version> 9 10 <date>DATE</date> 10 11 <plugin>com.woltlab.wcf</plugin> … … 30 31 <templates>templates.tar</templates> 31 32 <sql>install.sql</sql> 32 <script>acp/ update_facebook.php</script>33 <script>acp/check_facebook.php</script> 33 34 34 35 <options>options.xml</options> … … 38 39 <languages languagecode="de-informal">de-informal.xml</languages> 39 40 <languages languagecode="en">en.xml</languages> 41 </instructions> 42 43 <instructions type="update" fromversion="2.1.0"> 44 <files>files.tar</files> 45 <script>acp/update_facebook.php</script> 40 46 </instructions> 41 47 … … 72 78 <useroptions>useroptions.xml</useroptions> 73 79 <templates>templates.tar</templates> 74 <templatepatch fuzzfactor="2">templates .diff</templatepatch>80 <templatepatch fuzzfactor="2">templates113.diff</templatepatch> 75 81 <sql>update.sql</sql> 76 82
