r83317 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r83316‎ | r83317 | r83318 >
Date:19:45, 5 March 2011
Author:maxsem
Status:reverted
Tags:
Comment:
Fix E_DEPRECATED
Modified paths:
  • /trunk/extensions/OpenStackManager/OpenStackNovaUser.php (modified) (history)

Diff [purge]

Index: trunk/extensions/OpenStackManager/OpenStackNovaUser.php
@@ -344,10 +344,10 @@
345345 */
346346 static function uuid4() {
347347 $uuid = '';
348 - uuid_create( &$uuid );
 348+ uuid_create( $uuid );
349349 uuid_make( $uuid, UUID_MAKE_V4 );
350350 $uuidExport = '';
351 - uuid_export( $uuid, UUID_FMT_STR, &$uuidExport );
 351+ uuid_export( $uuid, UUID_FMT_STR, $uuidExport );
352352 return trim( $uuidExport );
353353 }
354354

Follow-up revisions

RevisionCommit summaryAuthorDate
r83971Reverting r83317. Passing by reference here is required by the library.laner22:20, 14 March 2011

Status & tagging log